module Vote::Matrix

Public Instance Methods

[]=(i, j, v) click to toggle source
# File lib/vote/matrix.rb, line 9
def []=(i, j, v) # rubocop:disable Naming/MethodParameterName
  @rows[i][j] = v
end