capturedPiecesStr method

Map<String, int> capturedPiecesStr(
  1. BishopState state, {
  2. String? startPos,
  3. int? seed,
})

Implementation

Map<String, int> capturedPiecesStr(
  BishopState state, {
  String? startPos,
  int? seed,
}) =>
    pieceMapIntToStr(
      capturedPieces(state, startPos: startPos, seed: seed),
      fullPiece: true,
    );