MCPcopy Index your code
hub / github.com/AI45Lab/Code / with_parameter

Method with_parameter

core/src/program.rs:54–57  ·  view source on GitHub ↗
(mut self, parameter: ProgramParameter)

Source from the content-addressed store, hash-verified

52 }
53
54 pub fn with_parameter(mut self, parameter: ProgramParameter) -> Self {
55 self.parameters.push(parameter);
56 self
57 }
58
59 pub fn with_step(mut self, step: ProgramStepTemplate) -> Self {
60 self.steps.push(step);

Calls

no outgoing calls