comparison src/LazyTensors/tensor_mapping.jl @ 496:f906f207571c feature/avoid_nested_inflated_tensormappings

Merge default and close branch before merge
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 05 Nov 2020 15:17:46 +0100
parents cd509e57f898
children 76e5682d0e52
comparison
equal deleted inserted replaced
493:df566372bb4f 496:f906f207571c
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!