-
The Success type S must extend an Object, which means that it is not possible to return a valid nullable success.
Why not allow nullable success? I understand that this is probably because we want …
-
Hi! thanks for your library.
If I pass a null value for the ClientID parameter, an exception will occur, even if I remove this parameter from the template.
It seems this is wrong.
-
Hi again @charlie-hadden 👋
I have a use case where I need to support paginating through nullable fields. This needs two components:
1. The expression needs to be a `coalesce`. This works fine al…
-
The update to v2.5.0 (using together with `spatie/laravel-data ^3.12`) is now causing issue with nullable properties.
Tha Data class:
![Image](https://github.com/user-attachments/assets/98b393ce-8c3…
-
### What happened?
```python
import ibis
t1 = ibis.table({"k": "!int32"})
t2 = ibis.table({"k": "int32"})
j = t1.anti_join(t2, "k")
j.schema()
# ibis.Schema {
# k int32
# }
```
I would…
-
There are a few obscure instances of nullable fields in some old parts of the project. This leads to some issues when building for tests.
-
Currently, we require a supplier that returns a non-null string:
https://github.com/jspecify/jdk/blob/457b29286178d19b73503b54c2b09461409b6deb/src/java.base/share/classes/java/util/Objects.java#L35…
-
# Background and Motivation
Currently, we have not implemented support for columns with null values. This is a very useful and ubiquitous primitive for any database engine.
# Changes Required
- […
-
I use your lib for sending message to Telegram, it works great, thank you!
But today I enable nullable in project
and get error on code:
```
logConfig = logConfig.WriteTo.Telegram(config => {…
-
Is there a way to define a setting of type `int?`?
Example: A maximum line length can be specified for the formatting of a document, but does not have to be. Then the line length is not limited.
A…