Skip to content

Commit 78303e3

Browse files
committed
Update skill docs with notin, is, isnot operators
Add the three new when() operators (notin, is, isnot) to the api-reference.md operator table to match the implementation.
1 parent 0081064 commit 78303e3

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.claude/plugins/burr/skills/burr/api-reference.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,10 @@ from burr.core import when
317317
- `key__gt=value` - Greater than
318318
- `key__gte=value` - Greater than or equal
319319
- `key__in=[values]` - In list
320-
- `key__contains=value` - List contains value
320+
- `key__notin=[values]` - Not in list
321+
- `key__contains=value` - Collection/string contains value
322+
- `key__is=value` - Identity check (`is`), useful for `None`
323+
- `key__isnot=value` - Negated identity (`is not`)
321324

322325
**Using `expr()`** - Arbitrary Python expressions:
323326
```python

0 commit comments

Comments
 (0)