We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf4b8c4 commit 593b931Copy full SHA for 593b931
src/Object_Methods/Vector_Methods.jl
@@ -222,6 +222,11 @@ Store elements from tuples into a vector.
222
223
# Examples
224
```jldoctest
225
+julia> using SuiteSparseGraphBLAS
226
+
227
+julia> GrB_init(GrB_NONBLOCKING)
228
+GrB_SUCCESS::GrB_Info = 0
229
230
julia> V = GrB_Vector{Float64}()
231
GrB_Vector{Float64}
232
@@ -358,9 +363,6 @@ GrB_SUCCESS::GrB_Info = 0
358
363
359
364
julia> GrB_Vector_extractElement(V, 2)
360
365
3.2
361
-
362
-julia> GrB_Vector_extractElement(V, 1)
-GrB_NO_VALUE::GrB_Info = 1
366
```
367
"""
368
function GrB_Vector_extractElement(v::GrB_Vector{T}, i::U) where {T <: valid_types, U <: GrB_Index}
0 commit comments