package qinap

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

Module containing functions for working with lists of characters.

type t = char list

Type alias for a list of characters.

val to_string : t -> string

to_string cs returns a string containing the characters in cs.

val of_string : string -> t

of_string s returns a list containing the characters in s.