Skip to Content

functional

View the code on GitHub

Structs

Functions

jit

jit(arg: Callable, compile_with_MAX: Bool = True) -> Callable
Jit and cache the given function or Callable.
Args
  • arg: Callable

  • compile_with_MAX: Bool (default: True)

Returns
  • Callable
jit(arg: fn(List[Array]) raises -> Array, compile_with_MAX: Bool = True) -> Callable
Jit and cache the given function or Callable.
Args
  • arg: fn(List[Array]) raises -> Array

  • compile_with_MAX: Bool (default: True)

Returns
  • Callable
jit(arg: fn(Array) raises -> Array, compile_with_MAX: Bool = True) -> Callable
Jit and cache the given function or Callable.
Args
  • arg: fn(Array) raises -> Array

  • compile_with_MAX: Bool (default: True)

Returns
  • Callable
Last updated on