LayrzNumber class

LayrzNumber is a numeric system that uses the complete alphabet to represent numbers.

This numeric system is base 36, and is useful when you need to represent large numbers in a short string.

Constructors

LayrzNumber()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

equivalences List<String>
equivalences is a list of characters that represent numbers.
no setter

Static Methods

toNumber(String value) int
toNumber converts a String defined in the LayrzNumber system to a int number.
toSystem(int value) String
toSystem converts a positive int to the LayrzNumber system.