Function decodedLenUpperBound [src]

Returns the maximum possible decoded size for a given input length after skipping ignored characters.

Prototype

pub fn decodedLenUpperBound(hex_len: usize) usize

Parameters

hex_len: usize

Source

pub fn decodedLenUpperBound(hex_len: usize) usize { return hex_len / 2; }