MCPcopy Index your code
hub / github.com/RustPython/RustPython / args_builder

Method args_builder

crates/jit/src/lib.rs:143–145  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

141
142impl CompiledCode {
143 pub fn args_builder(&self) -> ArgsBuilder<'_> {
144 ArgsBuilder::new(self)
145 }
146
147 pub fn invoke(&self, args: &[AbiValue]) -> Result<Option<AbiValue>, JitArgumentError> {
148 if self.sig.args.len() != args.len() {

Callers 2

test_args_builderFunction · 0.80
get_jit_argsFunction · 0.80

Calls 1

newFunction · 0.85

Tested by 1

test_args_builderFunction · 0.64