/**
 * @class Ext.data.matrix.Side
 * @extend Ext.Base
 * This class manages one side of a `Matrix`.
 * @private
 */
 
/**
 * @property {Ext.data.matrix.Side} inverse
 * Reference to the opposite side of the matrix.
 * @readonly
 */
 
/**
 * @property {Ext.data.matrix.Matrix} matrix
 * @readonly
 */
/**
 * @property {Number} index 
 * Either 0 or 1 which is the index of our id value in an association entry.
 * @readonly
 */
/**
 * @property {Ext.data.schema.Role} role
 * The role for this side of the matrix.
 * @readonly
 */
/**
 * @property {Object} slices 
 * Keyed by the id for this side of the matrix to yield a `Slice`.
 * @readonly
 */