rfcs icon indicating copy to clipboard operation
rfcs copied to clipboard

RFCs for changes to Pony

Results 61 rfcs issues
Sort by recently updated
recently updated
newest added

This provides an RFC for introducing access methods (getters) into the JSON package so as to facilitate document mutation. ponylang/ponyc#3922

Alternative 1, like Dart: ```pony class Point var x: F64 var y: F64 new create(this.x, this.y) ``` Alternative 2, like Python, Typescript ```pony class Point new create(var this.x: F64, var...

0 - request - user

Extend the standard library with BigDecimal and BigInteger. I have started to working on this, and I would like to submit this as a pull request soon.

The Power operator is used to raise a number by a power of x. Pony, however, lacks this rather important operator.

## Pipe Operator The pipe operator `|>` passes the result of an expression as the first parameter of another expression. The pipe operator `|>>` passes the result of an expression...

0 - request - user

I'm opening this issue as more of a question about which option would be best to go forward with. I see two options for improving the syntax for chaining together...

The primitive Format from stdlib's package "format" should allow for formatting with thousands separators, e.g. "10,000,000" instead of "10000000". _Note_ Of course the thousands separator should be language dependent (and...

0 - request - user

The commit https://github.com/ponylang/ponyc/commit/221169bc60414eebae2ce733a794e2fd3d5fda76 removed, on the basis of some C ABI-dependent unexpected behaviors/bugs, the only mechanism to pass value structs into FFI functions or to receive them. In the commit,...

0 - request - user

RFC for changes to String class to better support unicode.

This PR adds my RFC for `SortBy` primitive.