instance method
key?
Ruby on Rails edge
Since edgeSignature
key?(column)
No documentation comment.
Parameters
-
columnreq
Source
# File activemodel/lib/active_model/indexed_row.rb, line 138
def key?(column)
index = @indexes[column]
index && !UNSET.equal?(@row[index])
end
Defined in activemodel/lib/active_model/indexed_row.rb line 138
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveModel::IndexedRow::Mutable