Artifacts using module-resolver version 1.2.2
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 functionality including support for
[[numbers|Numeric]] and [[character strings|String]],
[[streams|Iterable]] and [[sequences|Sequential]],
[[exceptions|Throwable]], and [[null values|Null]].
- The Ceylon _metamodel_ is defined in
[[package ...
Last Release on Feb 13, 2021
Relocated → org.ceylon-lang »
ceylon.language
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. A new `Uri` may be obtained using
[[ceylon.net.uri::parse]].
void getit(String uriAsString) {
Uri uri = parse(uriAsString);
Request request = uri.get();
Response response = request.execute();
print(response.contents);
}
A ...
Last Release on Feb 13, 2021
- Prev
- 1
- Next