File tree Expand file tree Collapse file tree 5 files changed +32
-7
lines changed Expand file tree Collapse file tree 5 files changed +32
-7
lines changed Original file line number Diff line number Diff line change 1
1
# ArrayInterface.jl
2
2
3
+
4
+ [ ![ Stable] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://github.com/JuliaArrays/ArrayInterface.jl/stable )
5
+ [ ![ Dev] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://github.com/JuliaArrays/ArrayInterface.jl/dev )
3
6
[ ![ CI] ( https://github.com/SciML/ArrayInterface.jl/workflows/CI/badge.svg )] ( https://github.com/SciML/ArrayInterface.jl/actions?query=workflow%3ACI )
4
7
[ ![ CI (Julia nightly)] ( https://github.com/SciML/ArrayInterface.jl/workflows/CI%20(Julia%20nightly)/badge.svg )] ( https://github.com/SciML/ArrayInterface.jl/actions?query=workflow%3A%22CI+%28Julia+nightly%29%22 )
5
8
[ ![ Build status] ( https://badge.buildkite.com/a2db252d92478e1d7196ee7454004efdfb6ab59496cbac91a2.svg?branch=master )] ( https://buildkite.com/julialang/arrayinterface-dot-jl )
Original file line number Diff line number Diff line change
1
+ [deps ]
2
+ Documenter = " e30172f5-a6a5-5a46-863b-614d45cd2de4"
Original file line number Diff line number Diff line change
1
+ using ArrayInterface
2
+ using Documenter
3
+
4
+ makedocs (;
5
+ modules= [ArrayInterface],
6
+ sitename= " ArrayInterface" ,
7
+ pages= [
8
+ " Home" => " index.md" ,
9
+ ],
10
+ )
11
+
12
+ deploydocs (;
13
+ repo= " github.com/JuliaArrays/ArrayInterface.jl" ,
14
+ )
15
+
Original file line number Diff line number Diff line change
1
+ ``` @meta
2
+ CurrentModule = ArrayInterface
3
+ ```
4
+
5
+ # ArrayInterface
6
+
7
+ ``` @index
8
+ ```
9
+
10
+ ``` @autodocs
11
+ Modules = [ArrayInterface]
12
+ ```
Original file line number Diff line number Diff line change 79
79
_layout (:: IndexLinear , x:: Tuple ) = LinearIndices (x)
80
80
_layout (:: IndexCartesian , x:: Tuple ) = CartesianIndices (x)
81
81
82
- """
83
- ArrayStyle(::Type{A})
84
-
85
- Used to customize the meaning of indexing arguments in the context of a given array `A`.
86
-
87
- See also: [`argdims`](@ref), [`UnsafeIndex`](@ref)
88
- """
89
82
abstract type ArrayStyle end
90
83
91
84
struct DefaultArrayStyle <: ArrayStyle end
You can’t perform that action at this time.
0 commit comments