Skip to content

Commit 00c7cb6

Browse files
committed
Add some documentation to Alphabet.
1 parent 761b455 commit 00c7cb6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/base58/alphabet.cr

+4
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,25 @@ module Base58
22
# This is the base class for Base58 Alphabet implementations. It is not intended to be used directly.
33
class Alphabet
44
macro inherited
5+
# Query the base58 alphabet for the digit/character that represents the given value.
56
@[AlwaysInline]
67
def self.[](val)
78
BaseToUInt[val]
89
end
910

11+
# Query the base58 alphabet for the digit/character that represents the given value. Returns nil if the value is not in the alphabet.
1012
@[AlwaysInline]
1113
def self.[]?(val)
1214
BaseToUInt[val]?
1315
end
1416

17+
# Query the base58 alphabet for the value that the given digit/character represents.
1518
@[AlwaysInline]
1619
def self.inverse(val)
1720
UIntToBase[val]
1821
end
1922

23+
# Query the base58 alphabet for the value that the given digit/character represents. Returns nil if the digit/character is not in the alphabet.
2024
@[AlwaysInline]
2125
def self.inverse?(val)
2226
byte = UIntToBase[val]?

0 commit comments

Comments
 (0)