Print method for disord objects
show.RdShow methods for disords
Details
The print method simply prints the object's hash and its elements,
together with a reminder that the elements are listed in an
implementation-specific order. Function disord_show() is a
helper function, not really intended for the end-user.
Examples
print(rdis())
#> A disord object with hash a9520f5fbc4cd84375dbb14235e02d7735ad23d8 and elements
#> [1] 4 1 9 2 7 3 8 3 1
#> (in some order)
a <- rdis()
print(a)
#> A disord object with hash 61dc2aecd4cb577976aa42d076176df4477d5d6a and elements
#> [1] 1 9 5 2 8 2 4 5 7
#> (in some order)
print(a+100) # same hash code
#> A disord object with hash 61dc2aecd4cb577976aa42d076176df4477d5d6a and elements
#> [1] 101 109 105 102 108 102 104 105 107
#> (in some order)