File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
name = " DataAPI"
2
2
uuid = " 9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a"
3
3
authors = [
" quinnj <[email protected] >" ]
4
- version = " 1.5.0 "
4
+ version = " 1.5.1 "
5
5
6
6
[compat ]
7
7
julia = " 1"
Original file line number Diff line number Diff line change @@ -80,8 +80,10 @@ for which `refpool(A)` is not `nothing`:
80
80
* for any valid index `ix` into `invrefpool(A)` , `refpool(A)[invrefpool(A)[ix]]` is equal to `ix`
81
81
(according to `isequal`) and of the same type as `ix`.
82
82
83
- Additionally it is required that `haskey` is defined for `invrefpool(A)`,
84
- allowing to check if `ix` is a valid index into it.
83
+ Additionally it is required that for `invrefpool(A)` the following methods are defined:
84
+
85
+ * `Base.haskey`: allowing to check if `ix` is a valid index into it.
86
+ * `Base.get`: allowing to get a value from it or a passed default value if it is not present.
85
87
86
88
By default, `invrefpool(A)` returns `nothing`.
87
89
You can’t perform that action at this time.
0 commit comments