Patryk Wychowaniec
Patryk Wychowaniec
(commit messages contain rationale)
Fixes https://github.com/hlissner/doom-emacs/issues/6144. # The Bug `magit-find-file` is a handy function that creates a new buffer containing an older revision of the currently viewed file inside of it. For that newly-opened...
Closes https://github.com/nix-community/naersk/issues/230. Closes https://github.com/nix-community/naersk/issues/158. # Abstract ## Symlinks This pull request takes a bit different approach to solve #230 - instead of going with: ``` cp -rL $(dirname $toml) $dest...
`Illuminate\Database\Query\Builder` and `Illuminate\Database\Eloquent\Builder` share a few common methods, namely: `where`, `whereIn` etc. I think it could be useful if both classes implemented a common interface (named, say, `QueryBuilderInterface`), because: 1....
Compiling this code: ```rust #[derive(Document)] struct Foo { bar: Bar, } struct Bar; ``` ... will throw `the trait bound ... is not satisfied` at `Document` - it'd be nice...
Currently comments are hard-coded to `//` - this should be configurable.
Our current derive macro doesn't understand generic types, e.g.: ```rust struct Response { body: T, pagination: Pagination, } ``` ... forcing users to implement the `Document` trait by hand: ```rust...