Yes I totally invented this term 😛 What I mean by it is producing multiple hashes from a single key. Like this (if the syntax is unfamiliar to you read this):
1 |
auto [h1, h2, h3] = hashNT<3>("key"); |
Or like this (for non-template version which returns a vector):
1 |
auto hashes = hashN("key", 3); |
Why? One place where I needed such sorcery was my bloom filter […]