Arseny Kriuchkov ○

Results 13 issues of Arseny Kriuchkov ○

### Описание https://github.com/vkbottle/vkbottle/blob/771c35d07135e8cb9e1199a6621da87986ec5475/vkbottle/dispatch/views/abc/message.py#L25 ### Пример кода _No response_

todo
improvement

### Описание https://github.com/vkbottle/vkbottle/blob/771c35d07135e8cb9e1199a6621da87986ec5475/vkbottle/polling/bot_polling.py#L83-L97 ### Пример кода _No response_

small-fix

``` : ? married(person, person). ? married(p1_uid, p2_uid) { db:Marriage(partner_id=p1_uid, partner2_id=p2_uid); }% ? married(p1_uid, p2_uid) { married(p2_uid, p1_uid); } $ InMarriage { person(name, _) person_1; person person_2; } where {...

new_feature

New notation for predicates: ``` : #lt(int) -> int. #lt(x) -> y when y < x. int[] a = [1,2,3,4,5]. a = lt(5)[]. num = 1 .. a[3]; num[][] list;...

new_feature

# Predicate determinators Sometimes predicate may have multiple meanings and an ability to set non-logical determinators when calling the predicate or constructing new bound predicate instance would be useful. #...

new_feature

**Expected and real behaviour**: query `as_boolean(prime, x) = @false` must produce only natural solutions for `x` due to prime signature `?prime(natural)`. but it also produces integer results. **How to reproduce**:...

bug

```laurelang (map_abs(arr) = x) ~ (map(arr, absolute) = x) ```

new_feature

# Matrix ``` : ?transpose('T'[x][y]) -> 'T'[y][x]. ``` To make size variables invisible in predicate case's scope their names should start with underscore, such as `_x`. > Implementation. After such...

new_feature

``` $ structure { string name; 'T' field1; 'T'[] field2; } ```

new_feature