You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-17Lines changed: 18 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,12 +31,12 @@ to blindly paste code snippets from
31
31
32
32
It's main features include:
33
33
34
-
***Creation** from a wide variety of sources: multiple arrays, integers, streams, random, strings, files, ...
35
-
***Transformation** with many built-in: append, xor, and, hash, shifts, shuffle, reverse, sort, ...
34
+
***Creation** from a wide variety of sources: multiple arrays, integers, [streams](https://docs.oracle.com/javase/7/docs/api/java/io/InputStream.html), random, strings, files, ...
35
+
***Transformation** with many built-in: append, [xor](https://en.wikipedia.org/wiki/Exclusive_or), [and](https://en.wikipedia.org/wiki/Logical_conjunction), [hash](https://en.wikipedia.org/wiki/Cryptographic_hash_function), [shifts](https://en.wikipedia.org/wiki/Bitwise_operation#Bit_shifts), shuffle, reverse, [checksum](https://en.wikipedia.org/wiki/Checksum), ...
36
36
***Validators** with the ability to arbitrarily combine multiple ones with logical expressions
37
-
***Parsing and Encoding** in most common binary-to-text-encodings: [hex](https://en.wikipedia.org/wiki/Hexadecimal), [base64](https://en.wikipedia.org/wiki/Base64), ...
37
+
***Parsing and Encoding** in most common binary-to-text-encodings: [hex](https://en.wikipedia.org/wiki/Hexadecimal), [base36](https://en.wikipedia.org/wiki/Base36), [base64](https://en.wikipedia.org/wiki/Base64), ...
38
38
***Immutable, Mutable and Read-Only** versions
39
-
***Utility Features** like `indexOf`, `count`, `isEmpty`, `bitAt`, ...
39
+
***Utility Features** like `indexOf`, `count`, `isEmpty`, `bitAt`, `contains`...
40
40
***Flexibility** provide your own Transformers, Validators and Encoders
41
41
42
42
It is written in [Java 7](https://en.wikipedia.org/wiki/Java_version_history#Java_SE_7) to keep backwards compatibility with *Android* and older *Java* applications.
**Hashing** the internal byte array using the [`MessageDigest`](https://docs.oracle.com/javase/7/docs/api/java/security/MessageDigest.html) Java crypto API:
0 commit comments