comparison src/LazyTensors/tensor_mapping.jl @ 498:5a600ec40ccc feature/outer_product

Merge in default
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 05 Nov 2020 15:27:04 +0100
parents cd509e57f898
children 76e5682d0e52
comparison
equal deleted inserted replaced
491:2dc2eac27f75 498:5a600ec40ccc
62 """ 62 """
63 function domain_size end 63 function domain_size end
64 64
65 export range_size, domain_size 65 export range_size, domain_size
66 66
67 """
68 eltype(::TensorMapping{T})
69
70 The type of elements the TensorMapping acts on.
71 """
72 Base.eltype(::TensorMapping{T}) where T = T
73
67 # TODO: Think about boundschecking! 74 # TODO: Think about boundschecking!