package core

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

Source file ordered_collection_common.ml

1
2
3
4
5
6
7
8
9
10
include Base.Ordered_collection_common

let normalize ~length_fun t i = if i < 0 then i + length_fun t else i

let slice ~length_fun ~sub_fun t start stop =
  let stop = if stop = 0 then length_fun t else stop in
  let pos = normalize ~length_fun t start in
  let len = normalize ~length_fun t stop - pos in
  sub_fun t ~pos ~len
;;
OCaml

Innovation. Community. Security.