Module Bastet.List
module type EQ_F = functor (E : Interface.EQ) -> Interface.EQ with type t = E.t listmodule type SHOW_F = functor (S : Interface.SHOW) -> Interface.SHOW with type t = S.t listmodule type TRAVERSABLE_F = functor (A : Interface.APPLICATIVE) -> Interface.TRAVERSABLE with type 'a t = 'a list and type 'a applicative_t = 'a A.tmodule Functor : Interface.FUNCTOR with type 'a t = 'a listmodule Alt : Interface.ALT with type 'a t = 'a listmodule Apply : Interface.APPLY with type 'a t = 'a listmodule Applicative : Interface.APPLICATIVE with type 'a t = 'a listmodule Monad : Interface.MONAD with type 'a t = 'a listmodule Plus : Interface.PLUS with type 'a t = 'a listmodule Alternative : Interface.ALTERNATIVE with type 'a t = 'a listmodule Foldable : Interface.FOLDABLE with type 'a t = 'a listmodule Unfoldable : Interface.UNFOLDABLE with type 'a t = 'a listmodule Traversable : TRAVERSABLE_Fmodule Infix : sig ... end