Would be nice if logical indexing was supported. ```julia # this works y = [1,2,1,4] y[y .> 1.0] # this doesn't x = ComponentArray(a=1, b=[2, 1, 4]) x[x .> 1.0] ```