class Bullet::Registry::Object
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/bullet/registry/object.rbs class Bullet::Registry::Object < Bullet::Registry::Base def add: (String bullet_key, String key, String value) -> Set def include?: (String key, String value, String bullet_key) -> bool end
def add(bullet_key)
Experimental RBS support (using type sampling data from the type_fusion
project).
def add: (String bullet_key, String key, String value) -> Set
This signature was generated using 41 samples from 1 application.
def add(bullet_key) super(bullet_key.bullet_class_name, bullet_key) end
def include?(bullet_key)
Experimental RBS support (using type sampling data from the type_fusion
project).
def include?: (String key, String value, String bullet_key) -> bool
This signature was generated using 23 samples from 1 application.
def include?(bullet_key) super(bullet_key.bullet_class_name, bullet_key) end