Group: Ceylon
6.Ceylon Collection Platform Module46 usages
ceylon » collection Apache
Library providing general-purpose mutable lists, sets, and
maps.
The following interfaces define abstract mutable collection
types:
- [[MutableList]] is a mutable [[List]],
- [[MutableSet]] is a mutable [[Set]], and
- [[MutableMap]] is a mutable ...
Last Release on Feb 13, 2021
7.Ceylon Language Module101 usages
ceylon » language
The Ceylon language module containing the core definitions
referred to by the [language specification][spec], along
with some basic functionality of use to most programs:
- The [[root package|package ceylon.language]] defines
general-purpose ...
Last Release on Feb 13, 2021
Relocated → org.ceylon-lang »
ceylon.language
8.Ceylon JSON Platform Module18 usages
ceylon » json Apache
Contains everything required to parse and serialise JSON
data.
Sample usage for parsing and accessing JSON:
import ceylon.json {
parse, Object = Object
}
String getAuthor(String json){
value parsedJson = parse(json);
...
Last Release on Feb 13, 2021
9.Ceylon File Platform Module15 usages
ceylon » file
API for accessing hierarchical file systems. Clients use
[[Path]]s to obtain [[Resource]]s representing files or
directories.
Last Release on Feb 13, 2021
10.Ceylon Time Platform Module10 usages
ceylon » time
Date and Time library for Ceylon language SDK.
This library is loosely modeled/inspired by the JodaTime/JSR-310 date/time library.
Last Release on Feb 13, 2021
11.Ceylon IO Platform Module9 usages
ceylon » io Apache
This module allows you to read and write to streams, such
as files, sockets and pipes.
See the `ceylon.io` package for usage examples.
Last Release on Feb 13, 2021
12.Ceylon Whole Platform Module8 usages
ceylon » whole
This module provides an arbitrary-precision integer numeric type.
The type [[Whole|ceylon.whole::Whole]] is a first-class numeric type and
support all the usual mathematical operations:
Whole i = wholeNumber(12P);
Whole j = wholeNumber(3);
...
Last Release on Feb 13, 2021
13.Ceylon Buffer Platform Module7 usages
ceylon » buffer
This module allows you to convert between text and binary forms of data.
For efficiency of I/O (see the `ceylon.io` module), [[Buffer]]s are the core
representation which [[ceylon.buffer.codec::Codec]]s output from the
encode/decode operations, but ...
Last Release on Feb 13, 2021
14.Ceylon Logging Platform Module7 usages
ceylon » logging
Defines a platform-neutral API for writing log messages.
_Important!
Last Release on Feb 13, 2021
15.Ceylon Random Platform Module7 usages
ceylon » random Apache
Ceylon Random provides:
- a pseudorandom number generator ([[DefaultRandom]]),
- toplevel utility functions to shuffle streams or arrays ([[randomize]]
and [[randomizeInPlace]]), and
- an easy to implement interface for use by third party ...
Last Release on Feb 13, 2021
16.Ceylon Test Platform Module6 usages
ceylon » test Apache
The `ceylon.test` module is a simple framework to write repeatable tests.
Tests execute the code of the module under test and
can make assertions about what it does.
Last Release on Feb 13, 2021
18.Ceylon Math Platform Module3 usages
ceylon » math
This module provides four APIs:
- `ceylon.math.decimal`—an arbitrary-precision decimal
numeric type,
- `ceylon.math.whole`—an arbitrary-precision integer
numeric type,
- `ceylon.math.float`—various common mathematical
...
Last Release on Feb 13, 2021
19.Ceylon Network Platform Module3 usages
ceylon » net Apache
This module defines APIs for:
- representing and manipulating URIs,
- connecting to HTTP servers, and
- defining HTTP endpoints and executing HTTP servers.
The [[ceylon.net.uri::Uri]] class supports connection
to an HTTP URI.
Last Release on Feb 13, 2021
20.Ceylon Process Platform Module2 usages
ceylon » process
API for running native commands in a child process.
Clients simply create `Process`es using the
`createProcess()` method.
Last Release on Feb 13, 2021
