pub fn insert_ask(levels: &mut Vec<PriceLevel>, level: PriceLevel)Expand description
Insert a price level into an ask-sorted (ascending) list.
Binary-search + Vec::insert; same complexity profile as insert_bid.
pub fn insert_ask(levels: &mut Vec<PriceLevel>, level: PriceLevel)Insert a price level into an ask-sorted (ascending) list.
Binary-search + Vec::insert; same complexity profile as insert_bid.