Lines Matching +full:julia +full:- +full:version
40 Base.summary(io::IO, v::CeedVector) = print(io, length(v), "-element CeedVector")
48 Base.show(io::IO, v::CeedVector) = witharray_read(a -> show(io, a), v, MEM_HOST)
127 allocated by Julia, since those cannot be properly freed from libCEED.
141 already synchronized, this function results in a no-op.
169 for i = 1:length(args)-1
193 @witharray v_arr=v v_arr .*= -1.0
213 Same as [`@witharray`](@ref), but provides read-only access to the data.
267 more efficient to use the macro version `@witharray` (cf. the section on "Performance of
268 captured variable" in the [Julia
269 documentation](https://docs.julialang.org/en/v1/manual/performance-tips) and related [GitHub
270 issue](https://github.com/JuliaLang/julia/issues/15276).
294 Same as [`witharray`](@ref), but with read-only access to the data.