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 11# ArrayInterface.jl
22
3+
4+ [](https://github.com/JuliaArrays/ArrayInterface.jl/stable)
5+ [](https://github.com/JuliaArrays/ArrayInterface.jl/dev)
36[](https://github.com/SciML/ArrayInterface.jl/actions?query=workflow%3ACI)
47[/badge.svg)](https://github.com/SciML/ArrayInterface.jl/actions?query=workflow%3A%22CI+%28Julia+nightly%29%22)
58[](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 7979_layout(::IndexLinear, x::Tuple) = LinearIndices(x)
8080_layout(::IndexCartesian, x::Tuple) = CartesianIndices(x)
8181
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- """
8982abstract type ArrayStyle end
9083
9184struct DefaultArrayStyle <: ArrayStyle end
You can’t perform that action at this time.
0 commit comments