(input string)
| 98 | } |
| 99 | |
| 100 | func (e *Encoder) EncodeLowerUpperDigitSpecial(input string) ([]byte, error) { |
| 101 | return e.EncodeGeneric([]byte(input), 6) |
| 102 | } |
| 103 | |
| 104 | func (e *Encoder) EncodeFirstToLowerSpecial(input string) ([]byte, error) { |
| 105 | // all chars in string are ASCII, so we can modify input[0] directly |
no test coverage detected