function Hasher.booleanHasherimport { Hasher } from "https://deno.land/x/rimbu@0.14.0/hashed/common/hasher.ts"; const { booleanHasher } = Hasher; booleanHasher(): Hasher<boolean>Returns a Hasher instance that hashes booleans. ExamplesExample 1 const h = Hasher.booleanHasher() console.log(h.hash(true) === h.hash(false)) // => false ReturnsHasher<boolean>