MutableByteSymmetricMatrix

A mutable symmetric matrix of bytes.

Constructors

Link copied to clipboard
constructor(size: Int)

Properties

Link copied to clipboard
open override val size: Int

The size of the matrix.

Functions

Link copied to clipboard
open override fun column(j: Int): List<Byte>

Get elements in the column at index j.

Link copied to clipboard
open operator override fun get(i: Int, j: Int): Byte

Get the element at position (i, j).

Link copied to clipboard
open operator override fun iterator(): Iterator<Byte>
Link copied to clipboard
open override fun row(i: Int): List<Byte>

Get elements in the row at index i.

Link copied to clipboard
open operator override fun set(i: Int, j: Int, value: Byte)

Set the element at position (i, j) to value.

Link copied to clipboard
open override fun toString(): String