package lsp

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

Source file appendable_list.ml

1
2
3
4
5
6
7
8
9
type 'a t = 'a list -> 'a list

let empty k = k

let singleton x k = x :: k

let to_list l = l []

let ( @ ) a b k = a (b k)
OCaml

Innovation. Community. Security.