//! Shared GREASE helpers for HTTP/3 and WebTransport identifiers.
constGREASE_START:u64=0x21;constGREASE_STEP:u64=0x1f;/// Return `true` when the value matches RFC 9114 GREASE spacing.
pub(crate)constfnis_grease_value(value:u64)->bool{
value >=GREASE_START&&(value -GREASE_START)%GREASE_STEP==0}