Fork me on GitHub
#clojure-uk
<
2020-10-29
>
Conor08:10:12

An bhfuil a lán Gaeilge agat @dharrigan?

dharrigan08:10:50

Níl, chun mo náire

Conor08:10:08

Mise chomh maith

Conor08:10:25

Which I slightly regret, despite it being almost completely useless in a practical sense (apart from maybe reading An Béal Bocht in the original)

afhammad09:10:50

Morning, long time member, seldom post. Doing a lot more Clojure work these days.

👋 12
dharrigan14:10:49

Does anyone know why 32 was chosen as the chunk value?

dharrigan14:10:52

just curious

reborg15:10:30

it’s a byproduct of the selected HAMT branching factor (also 32), it essentially syncs lazy seq caching with reading a single array worth of data from the underlying HAMT. Of course this is mostly for vectors/maps/sets when they are processed through a sequential interface etc (HAMT https://en.wikipedia.org/wiki/Hash_array_mapped_trie)

dharrigan16:10:02

thank you! will read.