Compare commits

...

3 Commits

3 changed files with 16 additions and 2 deletions

@ -5,7 +5,7 @@ project(
).stdout().strip('\n'),
# 'online.fxreader.uv',
# ['c', 'cpp'],
version: '0.1.5.17+27.22',
version: '0.1.5.17+27.23',
# default_options: [
# 'cpp_std=c++23',
# # 'prefer_static=true',

@ -2,7 +2,7 @@
# https://gitea.fxreader.online/fxreader.online/freelance-project-34-marketing-blog/issues/2#issue-25
import typing
from typing import Any
from typing import Any, TypeVar, Optional, Iterable, Sequence, cast
from typing_extensions import Protocol
from abc import abstractmethod
@ -26,3 +26,14 @@ class Comparable(Protocol):
def __ge__(self: C, other: C) -> bool:
return not self < other
T = TypeVar('T', bound='Iterable[Any] | Sequence[Any]')
def check_generic(o: Any, t: type[T]) -> T:
res = cast(T, o)
assert isinstance(o, t)
return res

Binary file not shown.