Home
last modified time | relevance | path

Searched refs:fn_arity (Results 1 – 9 of 9) sorted by relevance

/dports/textproc/zorba/zorba-2.7.0/src/diagnostics/
H A Dxquery_stack_trace.cpp30 fn_arity_type fn_arity, in Entry() argument
36 fn_name_( fn_name ), fn_arity_( fn_arity ), filename_( file_name ), in Entry()
56 XQueryStackTrace::fn_arity_type fn_arity, in recordStackTrace() argument
81 fn_arity, in recordStackTrace()
H A Dxquery_stack_trace.h32 XQueryStackTrace::fn_arity_type fn_arity,
/dports/lang/elixir/elixir-1.12.3/lib/elixir/src/
H A Delixir_fn.erl21 EArities = [fn_arity(Args) || {'->', _, [Args, _]} <- EClauses],
33 fn_arity([{'when', _, Args}]) -> length(Args) - 1; function
34 fn_arity(Args) -> length(Args). function
/dports/lang/elixir-devel/elixir-1.13.1/lib/elixir/src/
H A Delixir_fn.erl24 EArities = [fn_arity(Args) || {'->', _, [Args, _]} <- EClauses],
36 fn_arity([{'when', _, Args}]) -> length(Args) - 1; function
37 fn_arity(Args) -> length(Args). function
/dports/textproc/zorba/zorba-2.7.0/include/zorba/
H A Dxquery_stack_trace.h45 Entry( fn_name_type const &fn_name, fn_arity_type fn_arity,
/dports/lang/gleam/gleam-0.18.2/compiler-core/src/type_/
H A Dpipe.rs76 match fun.type_().fn_arity() { in infer_each_expression()
/dports/lang/ghc/ghc-8.10.7/compiler/coreSyn/
H A DCorePrep.hs1094 fn_arity = idArity fn function
1095 excess_arity = fn_arity - n_args
/dports/lang/ghc/ghc-8.10.7/compiler/specialise/
H A DSpecialise.hs1359 fn_arity = idArity fn function
1495 spec_f_w_arity = spec_fn `setIdArity` max 0 (fn_arity - arity_decr)
/dports/lang/gleam/gleam-0.18.2/compiler-core/src/
H A Dtype_.rs218 pub fn fn_arity(&self) -> Option<usize> { in fn_arity() method