Live data from Hacker News

Viewing profile — joewillsher

joewillsher

HN member
Joined
Mon, Nov 02, 2015, 12:18 AM UTC
HN karma
9
Public activity
7 items

About joewillsher

No profile information was provided.

Recent public activity

  1. comment
    Comment #12192744

    There has been some community work on Windows, no official promises but IIRC there is already very basic support.

  2. comment
    Comment #11733321

    Here’s your explanation: https://github.com/apple/swift/blob/master/docs/ErrorHandlin... There has been discussion about statically typed errors on the evolution mailing list — som…

  3. comment
    Comment #11709592

    Does saying 'ARC' not work for you? :) And the Swift runtime is pretty minimal, mostly used for storing dynamic type information, dispatching protocol methods, generating (unspecia…

  4. comment
    Comment #11709192

    Yes, the swift runtime does stuff like heap allocation & reference counting for classes, type introspection (including `as` casts), error handling, as well as generating instances …

  5. comment
    Comment #11661853

    You can use the zip function to loop through 2 collections. `for (l, r) in zip(c1, c2) {` It is not simply motivated by making code concise, I would say `for num in collection.reve…

  6. comment
    Comment #11639423

    Yeah, I still wouldn’t say that c++ is “one of the most widely-used languages for writing native apps” for OS X. And internally apple use other languages a lot, but frameworks like…

  7. comment
    Comment #11639000

    Most apple platform apps are written in mostly objc or Swift and not C++, I wouldn’t say it is one of the most widely used languages on these platforms by any means. The Cocoa SDK …