Closed artem-zinnatullin closed 2 years ago
Pair
Triple
List
This way we save allocation of ArrayList and its backing array (JVM specific-ish) for common cases of 1,2,3 args functions.
ArrayList
array
Pair
for 2 arg memoized funcTriple
for 3 arg memoized funcList
for 4 and more arg memoized funcThis way we save allocation of
ArrayList
and its backingarray
(JVM specific-ish) for common cases of 1,2,3 args functions.