-
From https://github.com/pydantic/pydantic-core/pull/430#issue-1619909885
Currently we do a first pass in strict mode for unions and then a pass in lax mode. If we moved forward with something like …
-
Consider the following value wrapper struct and its associated json converter.
```csharp
[JsonConverter(typeof(ValueConverter))]
struct Value
{
public static implicit operator T(Value value…
-
Hi,
Following code:
```rust
#![feature(generic_associated_types)]
trait Iterator {
type Item
-
I'm opening this as a placeholder to ensure that the changes from https://github.com/dotnet/aspnetcore/pull/46898 make it into the release notes for 9.0. See also: https://github.com/dotnet/aspnetcore…
-
Sorry if it's a dumb question, as far as I understand there is a recursion depth limit on `from_slice_delim` to avoid running out of stack space (based on https://github.com/sipa/miniscript/pull/5) wh…
-
Hi,
really liking the ease and clarity of most his project :-)
While using protocols is great in principle, in practice a lot of the rows are `ConcreteFormRow` instances and therefore not super stri…
-
## Description
There's this itch that I felt developing with Go through the years and I've been having a hard time nailing what exactly it is.
Here's my attempt at writing it down.
```go
type …
-
In (some?) situations where the compiler needs the lifetime bound `Something: 'a` where `T: Trait` and `Trait` is some trait with the associated type `Type`, it does not accept that bound given explic…
-
We need to come up with a final design for how the `box` operator should work.
Here is what I personally think would be ideal; unfortunately it involves features which are not yet part of the langua…
-
Add support for tagging objects. Basic data model:
Object(oid,...) --< tags(oid,tid) >-- Tag(tid,name,type,owner?)
So an Object can have multiple tags, a Tag can be associated with multiple obje…