hylo
hylo copied to clipboard
Implement 'sink' static properties
We should use sink
static properties to represent constant properties of types, like the number of bits available in a particular BinaryInteger
.
public extension Int64 {
public static property bit_width: Int { sink { 64 } }
}