Group: Ceylon
Sort by:Popular

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
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
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
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
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
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
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
This module enables updates to multiple databases within a single transaction. It is integrated with [[module ceylon.dbc]].
Last Release on Feb 13, 2021
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
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