UnionPointer<T extends Union> 扩展

专门针对类型参数 UnionPointer 扩展。

使用于
注解
  • @Since('2.14')

属性

ref ↔ T
此指针引用的联合的 Dart 视图。
getter/setter 对

方法

elementAt(int index) Pointer<T>
指针算术运算(考虑元素大小)。

运算符

operator +(int offset) Pointer<T>
指向此指针之后的第 offsetT
operator -(int offset) Pointer<T>
指向此指针之前的第 offsetT
operator [](int index) → T
创建一个引用,以访问在 address + sizeOf<T>() * index 处的本地内存中支持此联合的字段。
operator []=(int index, T value) → void
value 联合复制到从 address * sizeOf<T>() * index 开始的本地内存中。