Stewart Gebbie
Stewart Gebbie
When using: ``` $ ponyc -v 0.22.3-aff82e4 [release] compiled with: llvm 5.0.1 -- cc (Ubuntu 5.4.0-6ubuntu1~16.04.9) 5.4.0 20160609 Defaults: pic=false ssl=openssl_0.9.0 ``` The following short program consistent crashes. `$ cat...
`ponyc/packages/encode/base64/base64.pony` includes the following code: ```pony fun decode[A: Seq[U8] iso = Array[U8] iso]( data: ReadSeq[U8], at62: U8 = '+', at63: U8 = '/', pad: U8 = '=') : A^ ?...
Currently `json.JsonDoc` provides accessors via the `data` field. However, if one has an `iso` reference to a `JsonDoc` that has already been populated, then it is difficult to modify the...
This introduces a viewpoint for accessing the internal data for a JSON element: document, object, array. This simplifies the process for modifying `iso` instances of `JsonDoc` after prior creation. ponylang/ponyc#3922
# Summary While trying to build a simple "event sourcing" style application I ran into problems with tuple matching. Essentially if I build a tuple as a literal: ```pony let...
While working with union types while is seems reasonable to call `u.definition()`, on a variable `u`, declared with a union type, as in the code snippet below. However, this produces...
Here we provide an RFC related to introducing Unix domain socket support into the `net` package.
This provides an RFC for introducing access methods (getters) into the JSON package so as to facilitate document mutation. ponylang/ponyc#3922
Minor fix to typos in the readme file.
from golang v1.18 --> v1.21 go.uber.org/multierr now uses atomic.Bool which requires Go 1.19 ## Error before bumping the version ``` $ ./do.sh dbuild Sending build context to Docker daemon 7.03MB...