Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Documentation/Index.md
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ try db.transaction {
| `<<=` | `Int -> Int` |
| `>>=` | `Int -> Int` |
| `&=` | `Int -> Int` |
| `||=` | `Int -> Int` |
| `\|\|=` | `Int -> Int` |
| `^=` | `Int -> Int` |
| `+=` | `String -> String` |

Expand Down Expand Up @@ -954,7 +954,7 @@ equate or compare different types will prevent compilation.
| `<=` | `Comparable -> Bool` | `<=` |
| `~=` | `(Interval, Comparable) -> Bool` | `BETWEEN` |
| `&&` | `Bool -> Bool` | `AND` |
| `||` | `Bool -> Bool` | `OR` |
| `\|\|`| `Bool -> Bool` | `OR` |

> *When comparing against `nil`, SQLite.swift will use `IS` and `IS NOT`
> accordingly.
Expand Down Expand Up @@ -1586,8 +1586,8 @@ arithmetic, bitwise operations, and concatenation.
| `<<` | `Int -> Int` | `<<` |
| `>>` | `Int -> Int` | `>>` |
| `&` | `Int -> Int` | `&` |
| `|` | `Int -> Int` | `|` |
| `+` | `String -> String` | `||` |
| `\|` | `Int -> Int` | `\|` |
| `+` | `String -> String` | `\|\|` |

> _Note:_ SQLite.swift also defines a bitwise XOR operator, `^`, which
> expands the expression `lhs ^ rhs` to `~(lhs & rhs) & (lhs | rhs)`.
Expand Down