Group: Ceylon
1.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
2.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
3.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
4.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
5.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
6.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
7.Ceylon Promise Platform Module2 usages
ceylon » promise Apache
Support for promises. If an operation cannot return a value
immediately without blocking, it may instead return a
_promise_ of the value.
Last Release on Feb 13, 2021
8.Ceylon Transaction Platform Module1 usages
ceylon » transaction Apache
This module enables updates to multiple databases within
a single transaction. It is integrated with
[[module ceylon.dbc]].
Last Release on Feb 13, 2021
9.Ceylon URI Platform Module1 usages
ceylon » uri Apache
This module defines APIs for representing and manipulating URIs.
The [[ceylon.uri::Uri]] class supports parsing and creating
URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986).
Last Release on Feb 13, 2021
10.Ceylon Database Platform Module
ceylon » dbc Apache
This module offers some components for JDBC-based
database connectivity. The main component is the class
[[Sql]], an instance of which may be obtained for any
given [[javax.sql::DataSource]].
Last Release on Feb 13, 2021
11.Ceylon Regex Platform Module
ceylon » regex Apache
This module provides basic cross-platform regular expression support.
It's based on Google's [RegExp object](http://www.gwtproject.org/javadoc/latest/com/google/gwt/regexp/shared/RegExp.html)
for GWT.
Last Release on Feb 13, 2021
