move CCIO from containers.io to containers

This commit is contained in:
Simon Cruanes 2015-06-26 14:01:44 +02:00
parent 0fcc736032
commit d817ec8d02
4 changed files with 5 additions and 5 deletions

4
_oasis
View file

@ -53,13 +53,13 @@ Library "containers"
Path: src/core Path: src/core
Modules: CCVector, CCPrint, CCError, CCHeap, CCList, CCOpt, CCPair, Modules: CCVector, CCPrint, CCError, CCHeap, CCList, CCOpt, CCPair,
CCFun, CCHash, CCInt, CCBool, CCFloat, CCArray, CCRef, CCSet, CCFun, CCHash, CCInt, CCBool, CCFloat, CCArray, CCRef, CCSet,
CCOrd, CCRandom, CCString, CCHashtbl, CCMap, CCFormat, CCOrd, CCRandom, CCString, CCHashtbl, CCMap, CCFormat, CCIO,
Containers Containers
BuildDepends: bytes BuildDepends: bytes
Library "containers_io" Library "containers_io"
Path: src/io Path: src/io
Modules: CCIO Modules:
BuildDepends: bytes BuildDepends: bytes
FindlibParent: containers FindlibParent: containers
FindlibName: io FindlibName: io

View file

@ -30,9 +30,6 @@ Simple utilities to deal with basic Input/Output tasks in a resource-safe
way. For advanced IO tasks, the user is advised to use something way. For advanced IO tasks, the user is advised to use something
like Lwt or Async, that are far more comprehensive. like Lwt or Async, that are far more comprehensive.
{b NOTE} this was formerly a monadic IO module. The old module is now
in [containers.advanced] under the name [CCMonadIO].
Examples: Examples:
- obtain the list of lines of a file: - obtain the list of lines of a file:
@ -58,6 +55,9 @@ Examples:
@since 0.6 @since 0.6
in 'containers' (rather than 'containers.io')
@since NEXT_RELEASE
*) *)