Skip to main content

der_octets_drop_head

Function der_octets_drop_head 

Source
pub open spec fn der_octets_drop_head(bytes: Seq<u8>) -> Seq<u8>
Expand description
{ if bytes.len() == 0 { bytes } else { bytes.skip(1) } }