David Sankel

Results 12 issues of David Sankel

The `README.md` instructions aren't sufficient to build Val on a Windows environment. It would be useful to support this environment to increase the pool of Val developers and confirm cross-platform...

Overall, I have two big concerns about this approach: * It is too tied to how Boost builds things and/or has incompatible Boost-specific workarounds. * BCM provides an alternative to...

``` public type Foo : Regular { var i : Int init(){ &i = 3 } } public conformance Foo: Equatable { public fun infix== (_ other: Self) -> Bool...

[This line](https://github.com/hylo-lang/hylo/blob/64d50651353d8121115049935e1ad1d7d69650e9/Library/Hylo/Array.hylo#L46) causes this error: ``` /home/dsankel/code/hylo/Sources/IR/Emitter.swift:1057: Fatal error: unexpected SubscriptCallExpr at location: /home/dsankel/code/hylo/Library/Hylo/Array.hylo:46:14 Illegal instruction (core dumped) ```

The inability to get reproducible compiler error output frustrates debugging.

How does this compare with ASIO? How does it compare with Sender/Receiver? Is this just an allocator aware version of ASIO? I'd like to understand why someone would want to...

We're investigating using CXX to create multiple DLLs for incorporation into a large C++ project. Non-inline functions with multiple definitions living in separate DLLs are okay when they aren't exposed...

### Description I have concerns with the [missing_safety_doc](https://rust-lang.github.io/rust-clippy/master/index.html#/missing_safety_doc) clippy lint defaulting to *warn* level. The lint requires unsafe functions have a `# Safety` documentation section describing "safety preconditions, so that...