MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / toBase64

Method toBase64

src/main/java/fieldnashorn/sourcemap/Base64.java:56–59  ·  view source on GitHub ↗

@param value A value in the range of 0-63. @return a base64 digit.

(int value)

Source from the content-addressed store, hash-verified

54 * @return a base64 digit.
55 */
56 public static char toBase64(int value) {
57 assert (value <= 63 && value >= 0) : "value out of range:" + value;
58 return BASE64_MAP.charAt(value);
59 }
60
61 /**
62 * @param c A base64 digit.

Callers 2

encodeMethod · 0.95
base64EncodeIntMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected