alacritty/src/term
Joe Wilm bbe276e3a8 Back Grid with VecDeque
VecDeque offers improved performance beyond a plain Vec for common
scrolling situations (full screen scroll). Additionally, VecDeque is
necessary for performant scrollback since recycling old rows for a Vec
would be expensive (push/pop front would shift entire vec).
2018-06-02 09:24:38 -07:00
..
cell.rs Remove all instances of unwrap() from config 2018-03-04 22:40:15 +00:00
color.rs Implement `reset_state` of Term struct (#1035) 2018-01-18 17:27:07 +00:00
mod.rs Back Grid with VecDeque 2018-06-02 09:24:38 -07:00