package shellwords

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

Source file join.ml

1
2
3
4
5
open Quote

let join ls =
  let aux acc word = quote word :: acc in
  List.fold_left aux [] ls |> List.rev |> String.concat " "