The type of the key value.
The type of the value.
Returns the key of this key/value pair.
The Key of this key/value pair.
Returns the value of key/value pair.
The value of this key/value pair.
Class Entry implements KoconutEquatable. The equality check process of this is done simply by using '==' operator when the KeyType is not KoconutEquatable, otherwise, by using the method 'equalsTo' to the the key element. Please, have a check following example.
Turns this Entry instance into a simple array.
Turns this Entry into a simple JSON obeject string.
Generated using TypeDoc
Represents a key/value pair for KoconutMap. The type of key is basically could be any kind of class instance, but it is recommended to be a number, string or custom class that inherits KoconutEquatable. Otherwise, further equality check process in KoconutSet or KoconutMap will not work as intented. This is beacuse even if there are two different instances of same class, which have exactly identical properties, they are fundamentally indistinguishable from each other. Please, check the example of 'equalsTo' method