Chang
Chang
I'm getting `ValueError: invalid literal for int() with base 10:` for strings with non-ascii symbols, e.g Finnish äö. Any thoughts on how to fix? Thanks
There's some really cool features in the Chromecast API, such as [remote display](https://developers.google.com/cast/docs/remote) and [game manager](https://developers.google.com/cast/docs/gaming). Would it be possible to support them on React Native?
Currently only pointer types can be declared optional: ```swift var a: int* // non-optional, cannot be null var b: int*? // optional, can be null ``` Extend this feature also...
- [x] MVP: non-capturing lambda, explicit parameter types, single-expression body (a08e68e0ec8f4fa9861e162a9aeee88ff11c41a0) - [x] implicit parameter types - [x] allow block as body - [ ] allow capturing variables from enclosing...
To include all language features and more examples Concepts to cover in the Book: - [ ] everything from spec.md - [ ] package manager - [ ] build system
To allow one to specify a conversion to an existing class for your own class e.g call StringRef methods on Strings directly
- [ ] enum member functions - [ ] allow enums to implement interfaces - [ ] allow omitting enum type when it can be inferred
Now that the standard library is growing, we really need this. Suggestion: could be e.g ```swift class Foo { // private stuff public: // public stuff protected: // package-only stuff...