Volodymyr Magamedov
Volodymyr Magamedov
``` python @define(Record[{'foo': Integer}]) def func(arg): return arg['foo'] + 1 ``` `arg` here should always contain only one field `foo`, which was required in `define` decorator
Basically we need a conversion from ``typing`` types into ``hiku`` types: ```python class Character: name: str @define def print_character(character: Character): print(character.name) ```
- [ ] Concepts, terminology: Graph, Node, Field, Link... - [ ] Graph and query validation
- [ ] Key errors in result - [ ] More or less arguments passed to the `__call__` method
Version: master Language: Python Currently `google.protobuf.message.Message` class has several abstract methods, like `MergeFromString` and `SerializeToString`, but `FromString` method is missing. The only difference I see is that `FromString` is a...