package irmin

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Reversed_list.t is constructed the same way as List.t, but needs to be reversed before it can be used as a regular list.

This is helpful when building up a list in reverse in order to force reversal at the end of the accumulation process.

type 'a t =
  1. | []
  2. | :: of 'a * 'a t
val t : 'a Type.t -> 'a t Type.t
val rev : 'a t -> 'a list