class Bootsnap::LoadPathCache::Cache

def search_index(feature, try_extensions: true)

Experimental RBS support (using type sampling data from the type_fusion project).

def search_index: (String feature, try_extensions: true) -> String

This signature was generated using 1 sample from 1 application.

def search_index(feature, try_extensions: true)
  if try_extensions
    try_index(feature + DOT_RB) ||
      try_index(feature + DLEXT) ||
      try_index(feature + DLEXT2) ||
      try_index(feature)
  else
    try_index(feature)
  end
end