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

Method push_input

2019/src/intcoder.rs:63–65  ·  view source on GitHub ↗
(&mut self, input: T)

Source from the content-addressed store, hash-verified

61 }
62
63 pub fn push_input<T: Into<i64>>(&mut self, input: T) {
64 self.input.push_back(input.into());
65 }
66
67 pub fn push_str(&mut self, s: &str) {
68 for b in s.bytes() { self.push_input(b); }

Callers 11

push_strMethod · 0.80
runFunction · 0.80
run_testFunction · 0.80
explore_mapFunction · 0.80
in_beamFunction · 0.80
part_oneFunction · 0.80
part_twoFunction · 0.80
part_oneFunction · 0.80
part_twoFunction · 0.80
runFunction · 0.80
part_twoFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected