package pythonlib

  1. Overview
  2. Docs
val positional : Base.string -> 'a Of_python.t -> docstring:Base.string -> 'a t
val keyword : ?default:'a -> Base.string -> 'a Of_python.t -> docstring:Base.string -> 'a t
val keyword_opt : Base.string -> 'a Of_python.t -> docstring:Base.string -> 'a Base.option t
val typerep : 'a Typerep_lib.Std.Typerep.t -> 'a Of_python.t
val pair : 'a Of_python.t -> 'b Of_python.t -> ('a * 'b) Of_python.t
val triple : 'a Of_python.t -> 'b Of_python.t -> 'c Of_python.t -> ('a * 'b * 'c) Of_python.t
val quadruple : 'a Of_python.t -> 'b Of_python.t -> 'c Of_python.t -> 'd Of_python.t -> ('a * 'b * 'c * 'd) Of_python.t
val quintuple : 'a Of_python.t -> 'b Of_python.t -> 'c Of_python.t -> 'd Of_python.t -> 'e Of_python.t -> ('a * 'b * 'c * 'd * 'e) Of_python.t
val option : 'a Of_python.t -> 'a Base.option Of_python.t
val list : 'a Of_python.t -> 'a Base.list Of_python.t
val list_or_iter : 'a Of_python.t -> 'a Base.list Of_python.t
val one_or_tuple_or_list : 'a Of_python.t -> 'a Base.list Of_python.t
val one_or_tuple_or_list_relaxed : 'a Of_python.t -> 'a Base.Or_error.t Base.list Of_python.t
val dict : key:'a Of_python.t -> value:'b Of_python.t -> ('a * 'b) Base.list Of_python.t
val star_args : docstring:Base.string -> Pytypes.pyobject Base.list t