Group: Ceylon
Sort by:Popular

1. 📁Ceylon Interop28 usages

ceylon.interop(3)

Ceylon Interop

2. 📁Ceylon AST7 usages

ceylon.ast(4)

Ceylon AST

3. 📁Ceylon Build5 usages

ceylon.build(3)

Ceylon Build

4. 📁Ceylon HTTP4 usages

ceylon.http(3)

Ceylon HTTP
Ceylon Tool
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
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

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
API for accessing hierarchical file systems. Clients use [[Path]]s to obtain [[Resource]]s representing files or directories.
Last Release on Feb 13, 2021
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
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
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
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
Defines a platform-neutral API for writing log messages. _Important!
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
Runtime
Last Release on Feb 13, 2021
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
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
API for running native commands in a child process. Clients simply create `Process`es using the `createProcess()` method.
Last Release on Feb 13, 2021