class MemDB::Entries::Entry
Attributes
id[R]
matching[R]
value[R]
Public Class Methods
new(id, matching, value)
click to toggle source
# File lib/mem_db.rb, line 13 def initialize(id, matching, value) @id = id @matching = matching @value = value end