Module: ConvenientService::Utils::Array Private
- Defined in:
- lib/convenient_service/utils/array.rb,
lib/convenient_service/utils/array/wrap.rb,
lib/convenient_service/utils/array/merge.rb,
lib/convenient_service/utils/array/rjust.rb,
lib/convenient_service/utils/array/find_last.rb,
lib/convenient_service/utils/array/drop_while.rb,
lib/convenient_service/utils/array/exceptions.rb,
lib/convenient_service/utils/array/find_yield.rb,
lib/convenient_service/utils/array/keep_after.rb,
lib/convenient_service/utils/array/limited_push.rb,
lib/convenient_service/utils/array/contain_exactly.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Defined Under Namespace
Modules: Exceptions Classes: ContainExactly, DropWhile, FindLast, FindYield, KeepAfter, LimitedPush, Merge, Rjust, Wrap
Class Method Summary collapse
- .contain_exactly? ⇒ Boolean private
- .drop_while ⇒ Object private
- .find_last ⇒ Object private
- .find_yield ⇒ Object private
- .keep_after ⇒ Object private
- .limited_push ⇒ Object private
- .merge ⇒ Object private
- .rjust ⇒ Object private
- .wrap ⇒ Object private
Class Method Details
.contain_exactly? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
24 25 26 |
# File 'lib/convenient_service/utils/array.rb', line 24 def contain_exactly?(...) ContainExactly.call(...) end |
.drop_while ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
28 29 30 |
# File 'lib/convenient_service/utils/array.rb', line 28 def drop_while(...) DropWhile.call(...) end |
.find_last ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
32 33 34 |
# File 'lib/convenient_service/utils/array.rb', line 32 def find_last(...) FindLast.call(...) end |
.find_yield ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
36 37 38 |
# File 'lib/convenient_service/utils/array.rb', line 36 def find_yield(...) FindYield.call(...) end |
.keep_after ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
40 41 42 |
# File 'lib/convenient_service/utils/array.rb', line 40 def keep_after(...) KeepAfter.call(...) end |
.limited_push ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
44 45 46 |
# File 'lib/convenient_service/utils/array.rb', line 44 def limited_push(...) LimitedPush.call(...) end |
.merge ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
48 49 50 |
# File 'lib/convenient_service/utils/array.rb', line 48 def merge(...) Merge.call(...) end |