stitch
Note taking for messy minimalists
git clone git://mccd.space/stitch| Log | Files | Refs | README | LICENSE | Mail |
basic.ml (111B)
1 let array_drop n arr =
2 if Array.length arr < n then [||] else Array.sub arr n (max (Array.length arr - n) 0)