Module: Ramda

Extended by:
SingleForwardable
Defined in:
lib/ramda.rb,
lib/ramda/list.rb,
lib/ramda/math.rb,
lib/ramda/type.rb,
lib/ramda/logic.rb,
lib/ramda/object.rb,
lib/ramda/string.rb,
lib/ramda/version.rb,
lib/ramda/function.rb,
lib/ramda/relation.rb,
lib/ramda/exception_handler.rb,
lib/ramda/internal/functors.rb,
lib/ramda/internal/curried_method.rb,
lib/ramda/internal/function_with_arity.rb

Overview

Ramda library implementation, source: ramdajs.com/ rubocop:disable Metrics/ModuleLength

Defined Under Namespace

Modules: ExceptionHandler, Function, Internal, Internals, List, Logic, Math, Object, Relation, String, Type

Constant Summary collapse

VERSION =
'0.8.1'.freeze

Class Method Summary collapse

Class Method Details

.exception_handlerObject



198
199
200
# File 'lib/ramda.rb', line 198

def self.exception_handler
  @exception_handler ||= ::Ramda::ExceptionHandler.method(:with_narrow)
end

.exception_handler=(handler) ⇒ Object



194
195
196
# File 'lib/ramda.rb', line 194

def self.exception_handler=(handler)
  @exception_handler = handler
end