File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -2,21 +2,25 @@ module Base58
2
2
# This is the base class for Base58 Alphabet implementations. It is not intended to be used directly.
3
3
class Alphabet
4
4
macro inherited
5
+ # Query the base58 alphabet for the digit/character that represents the given value.
5
6
@[AlwaysInline ]
6
7
def self. [](val)
7
8
BaseToUInt [val]
8
9
end
9
10
11
+ # Query the base58 alphabet for the digit/character that represents the given value. Returns nil if the value is not in the alphabet.
10
12
@[AlwaysInline ]
11
13
def self. []?(val)
12
14
BaseToUInt [val]?
13
15
end
14
16
17
+ # Query the base58 alphabet for the value that the given digit/character represents.
15
18
@[AlwaysInline ]
16
19
def self.inverse (val )
17
20
UIntToBase [val]
18
21
end
19
22
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.
20
24
@[AlwaysInline ]
21
25
def self.inverse ?(val)
22
26
byte = UIntToBase [val]?
You can’t perform that action at this time.
0 commit comments