class REPOSITORY_TRANSIENT_OBJECT
Summary
Overview
creation features
exported features
  • hash_code: INTEGER_32
    The hash-code value of Current.
  • infix "<" (other: REPOSITORY_TRANSIENT_OBJECT): BOOLEAN
    Is Current strictly less than other?
  • is_equal (other: REPOSITORY_TRANSIENT_OBJECT): BOOLEAN
    Is other attached to an object considered equal to current object?
  • recycle
    Do whatever needs to be done to free resources or recycle other objects when recycling this one
  • infix "<=" (other: REPOSITORY_TRANSIENT_OBJECT): BOOLEAN
    Is Current less than or equal other?
  • infix ">" (other: REPOSITORY_TRANSIENT_OBJECT): BOOLEAN
    Is Current strictly greater than other?
  • infix ">=" (other: REPOSITORY_TRANSIENT_OBJECT): BOOLEAN
    Is Current greater than or equal than other?
  • in_range (lower: REPOSITORY_TRANSIENT_OBJECT, upper: REPOSITORY_TRANSIENT_OBJECT): BOOLEAN
    Return True if Current is in range [lower..upper]
    See also min, max, compare.
  • compare (other: REPOSITORY_TRANSIENT_OBJECT): INTEGER_32
    If current object equal to other, 0 if smaller, -1; if greater, 1.
  • three_way_comparison (other: REPOSITORY_TRANSIENT_OBJECT): INTEGER_32
    If current object equal to other, 0 if smaller, -1; if greater, 1.
  • min (other: REPOSITORY_TRANSIENT_OBJECT): REPOSITORY_TRANSIENT_OBJECT
    Minimum of Current and other.
  • max (other: REPOSITORY_TRANSIENT_OBJECT): REPOSITORY_TRANSIENT_OBJECT
    Maximum of Current and other.
hash_code: INTEGER_32
effective function
The hash-code value of Current.
infix "<" (other: REPOSITORY_TRANSIENT_OBJECT): BOOLEAN
effective function
Is Current strictly less than other?
is_equal (other: REPOSITORY_TRANSIENT_OBJECT): BOOLEAN
effective function
Is other attached to an object considered equal to current object?
recycle
effective procedure
Do whatever needs to be done to free resources or recycle other objects when recycling this one
infix "<=" (other: REPOSITORY_TRANSIENT_OBJECT): BOOLEAN
effective function
Is Current less than or equal other?
infix ">" (other: REPOSITORY_TRANSIENT_OBJECT): BOOLEAN
effective function
Is Current strictly greater than other?
infix ">=" (other: REPOSITORY_TRANSIENT_OBJECT): BOOLEAN
effective function
Is Current greater than or equal than other?
in_range (lower: REPOSITORY_TRANSIENT_OBJECT, upper: REPOSITORY_TRANSIENT_OBJECT): BOOLEAN
effective function
Return True if Current is in range [lower..upper]
See also min, max, compare.
compare (other: REPOSITORY_TRANSIENT_OBJECT): INTEGER_32
effective function
If current object equal to other, 0 if smaller, -1; if greater, 1.
three_way_comparison (other: REPOSITORY_TRANSIENT_OBJECT): INTEGER_32
effective function
If current object equal to other, 0 if smaller, -1; if greater, 1.
min (other: REPOSITORY_TRANSIENT_OBJECT): REPOSITORY_TRANSIENT_OBJECT
effective function
Minimum of Current and other.
max (other: REPOSITORY_TRANSIENT_OBJECT): REPOSITORY_TRANSIENT_OBJECT
effective function
Maximum of Current and other.