LxSequentialImpl.length

Obtain the length of an array type.

This only works on types that represent arrays.

TODO I am unsure if the LLVM documentation mean sequential or array when it states "only works for arrays". Test what happens when the type is a pointer or vector.

  1. size_t length [@property getter]
    struct LxSequentialImpl(LxTypeKind Kind)
    @property
    static if(Kind == LxTypeKind.Array)
    size_t
    length
    ()
  2. size_t length [@property getter]

Meta