Top Level Namespace
Defined Under Namespace
Modules: Spongebobify Classes: String
Instance Method Summary collapse
Instance Method Details
#is_lowercase(byte) ⇒ Object
6 7 8 |
# File 'lib/spongebobify.rb', line 6 def is_lowercase(byte) byte >= 97 && byte <= 122 end |
#is_uppercase(byte) ⇒ Object
10 11 12 |
# File 'lib/spongebobify.rb', line 10 def is_uppercase(byte) byte >= 65 && byte <= 90 end |