$allocate static method

Pointer<Eval> $allocate(
  1. Allocator $allocator, {
  2. required Pointer<Int> feature,
  3. required int player,
})

Implementation

static ffi.Pointer<Eval> $allocate(
ffi.Allocator $allocator, {
required ffi.Pointer<ffi.Int> feature,
required int player,
}) => $allocator<Eval>()
..ref.feature = feature
..ref.player = player;