Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Composition of refinement predicates #2

Open
espetro opened this issue Sep 27, 2021 · 0 comments
Open

Composition of refinement predicates #2

espetro opened this issue Sep 27, 2021 · 0 comments

Comments

@espetro
Copy link
Owner

espetro commented Sep 27, 2021

Currently, it is not possible to compose refinement predicates; for example:

from refined.predicates import NonEmpty, Contains
from typing import Annotated, Literal, List

NonEmptyListWithAZero = Annotated[List[int], NonEmpty[List[int]], Contains[List[Int], Literal[0]]]

However, you can define nested annotated types, which would return a composed annotated type with refinement predicates:

from refined.predicates import NonEmpty, Contains
from typing import Annotated, Literal, List

NonEmptyList = Annotated[List[int], NonEmpty[List[int]]]
ListWithAZero = Annotated[NonEmptyList,  Contains[List[Int], Literal[0]]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant