Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
willow-ahrens committed May 21, 2024
1 parent 2095aa7 commit daabc8a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions docs/src/guides/interoperability.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,26 +30,31 @@ julia> v = Vector([1, 0, 2, 3])
0
2
3
julia> obov = PlusOneVector(v)
4-element PlusOneVector{Int64}:
4-element PlusOneVector{Int64, Vector{Int64}}:
2
1
3
4
julia> obov[1] += 8
10
julia> obov
4-element PlusOneVector{Int64}:
4-element PlusOneVector{Int64, Vector{Int64}}:
10
1
3
4
julia> obov.data
4-element Vector{Int64}:
9
0
2
3
```

### `CIndex`
Expand Down

0 comments on commit daabc8a

Please sign in to comment.