MCPcopy Create free account
hub / github.com/AxlLind/AdventOfCode / push_str

Method push_str

2019/src/intcoder.rs:67–70  ·  view source on GitHub ↗
(&mut self, s: &str)

Source from the content-addressed store, hash-verified

65 }
66
67 pub fn push_str(&mut self, s: &str) {
68 for b in s.bytes() { self.push_input(b); }
69 self.push_input(b'\n');
70 }
71}
72
73// private methods

Callers 4

part_twoFunction · 0.80
run_droidFunction · 0.80
brute_force_solutionFunction · 0.80
play_manuallyFunction · 0.80

Calls 1

push_inputMethod · 0.80

Tested by

no test coverage detected