Internals

LazyArrays.AddMethod
Add(A1, A2, …, AN)

A lazy representation of A1 + A2 + … + AN; i.e., a shorthand for applied(+, A1, A2, …, AN).

source
LazyArrays.ApplyStyleType

ApplyStyle

is an abstract type whose subtypes indicate how a lazy function is materialized. The default is DefaultApplyStyle which indicates that applied(f, A...) is materialized as f(A...).

source
LazyArrays.BroadcastLayoutType
BroadcastLayout{F}()

is returned by MemoryLayout(A) if a matrix A is a BroadcastArray. F is the typeof function that broadcast operation is applied.

source
LazyArrays.PaddedColumnsType
PaddedColumns{L}()

represents a vector or matrix with layout L() whose columns have been padded with zeros below, i.e., a lazy version of [A; Zeros(...)].

source
LazyArrays.PaddedRowsType
PaddedRows{L}()

represents a matrix with layout L() whose rows have been padded with zeros below, i.e., a lazy version of [A Zeros(...)].

source