Wasm Directoryalpha
Record

exponential-bucket

A set of bucket counts, encoded in a contiguous array of counts.

record exponential-bucket {
  offset: s32,
  counts: list​<u64>,
}

Fields

NameTypeDescription
offsets32The bucket index of the first entry in the counts list.
countslist​<u64>A list where counts[i] carries the count of the bucket at index offset + i.