Operators

Cards (3)

  • ~/ - Divide, returning an integer result.
  • Cascades (..?..) allow you to make a sequence of operations on the same object.
  • If the object that the cascade operates on can be null, then use a null-shorting cascade (?..) for the first operation.