Sebastian Malton

Results 129 issues of Sebastian Malton

BREAKING CHANGE: 'set()' method now only exists if a 'set()' is provided ### Code change checklist - [x] Added/updated unit tests - [x] Updated `/docs`. For new functionality, at least...

**Intended outcome:** Have strict and complete type safety to help with refactoring. **Actual outcome:** The return type of `computed()` and `observable.box()` both have `set()` and `get()` methods, but the return...

🐛 bug

Current Behaviour: `ObservableSet.replace(...)` necessarily emits a single DELETE event for every entry in the set and then a single ADD event for all the entries in the provided source. Expected...

🐛 bug

As the types for `observable.array`, `observable.map`, `observable.set`, and `observable.object` all imply: ```tsx export declare type CreateObservableOptions = { name?: string; equals?: IEqualsComparer; deep?: boolean; defaultDecorator?: Annotation; proxy?: boolean; autoBind?: boolean;...

🐛 bug

I believe that there should be some way of flattening a tuple. The most common reason is probably from a macro or within one that calls a function that returns...

T-lang
T-libs-api

gregorio verison: 6.0.0 When rendering a full bar `(:)` or double bar `(::)` the line seems to extend a little above the top horizontal line. ![image](https://github.com/gregorio-project/gregorio/assets/8225332/bb736be4-24e3-43fe-b38f-4af99cd1a60d) ![image](https://github.com/gregorio-project/gregorio/assets/8225332/8acdbd60-126e-450a-89e6-707324858a67)

fonts

**Issue:** **How To Reproduce:** 1. Setup a github action that `uses: butlerlogic/action-autotag@stable` and specifies under `with:` the value `GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}`. 2. See that github outputs a warning about...

Currently it is not possible to do the following in standard rust: ```rust let a = [vec![0, 1]; 5]; ``` Would having a macro in this library be a good...