I literally just fixed a typo in a GitHub repo...

I thought that this exists only in memes...

But, here you go. My nerd-instincs won't let this tiny iritating thing to exists.
So I fix it.

Change '!' to '|' - because at first I thought that '!' is for negation, and '|' is not supported, for some reason.
Let other nerds not have same mistake.
This commit is contained in:
TheLastGimbus 2020-05-06 00:54:13 +02:00
parent 94fe04ee35
commit 0dff608ab8
1 changed files with 6 additions and 2 deletions

View File

@ -35,11 +35,15 @@ Future<List<Animal>> findAnimalsByLegs(int legCount) {
```
## Boolean algebra
You can nest boolean expressions by using the `&`, `!` operators and the `not` method
You can nest boolean expressions by using the `&`, `|` operators and the `not` method
exposed by moor:
```dart
// find all animals that aren't mammals and have 4 legs
select(animals)..where((a) => a.isMammal.not() & a.amountOfLegs.equals(4))
select(animals)..where((a) => a.isMammal.not() & a.amountOfLegs.equals(4));
// find all animals that are mammals or have 2 legs
select(animals)..where((a) => a.isMammal | a.amountOfLegs.equals(2));
```
## Arithmetic