Abstract Data Types
Feb 122018A type defines not just the possible values that some data can take, but also the operations which can be performed on that data.
For example, the int
type represents integers, and supports arithmetic operations, bitwise operations and comparison operations.