sdata

sdata(S::SharedArray)

Returns the actual Array object backing S

Examples

julia> S = SharedArray([1, 2, 3, 4, 5]);
julia> sdata(S)
5-element Array{Int64,1}:
 1
 2
 3
 4
 5

This example demonstrates the usage of the sdata function with a SharedArray. It returns the actual Array object that backs the SharedArray. In this case, the SharedArray S is backed by an Array with elements [1, 2, 3, 4, 5].

See Also

User Contributed Notes

Add a Note

The format of note supported is markdown, use triple backtick to start and end a code block.

*Required Field
Details

Checking you are not a robot: