SlideShare ist ein Scribd-Unternehmen logo
1 von 17
Downloaden Sie, um offline zu lesen
Enumerables
Ginger Griffis
Tuesday, August 13, 13
Enumerable is a Module
Mixin
Tuesday, August 13, 13
What the eff is that??
Tuesday, August 13, 13
What is a Module?
• A Module is a collection of methods and
constants.
• Similar to a regular Class but without the
concept of instantiation
• Used as a standalone entity, it can help with
namespacing
Tuesday, August 13, 13
Tuesday, August 13, 13
So..What is a Mixin?
• A Mixin is a Module
• A SPECIAL type of
Module
Tuesday, August 13, 13
Special How?
• A Mixin happens when you include a
Module within a Class
• Instance Methods come to life!
• Allows a sense of multiple inheritance
• 2 objects marry and the result is greater
than the sum of the parts
Tuesday, August 13, 13
So, as I was saying, Enumerable
is a Module Mixin
• Provides Collection type classes with
traversal, searching, and sorting functionality
Tuesday, August 13, 13
Examples in Standard
Ruby Library
• Some of your BFFs include Enumerable
• Array, Hash, Set
• Range, File
Tuesday, August 13, 13
Some Cool Enumerable
Methods
• all? (do all items return true for the block)
• any? (do any items return true for the block)
• collect (make new collection with results)
• count
• detect (return the first item that returns
true for the block)
• find
• first
• grep (return all items that === a pattern)
• inject (iterates through the collection with
an accumulator)
• reject (returns all items that return false
for the block)
• select (returns all items that return true
for the block)
Tuesday, August 13, 13
Methods that must be defined if a class
includes Enumerable
• each (basically some flavor of yielding to a block for each
element in your object)
• If the class wishes to use the max, min, or
sort functions provided by Enumerable
• The “each” items of the collection must
implement <=>
• Combined comparison operator. Returns 0 if first operand equals
second, 1 if first operand is greater than the second and -1 if first
operand is less than the second.
Tuesday, August 13, 13
And NOW for
the fun part!
Tuesday, August 13, 13
Mixin Match
You can add the Enumerable
Module to your own classes!
Tuesday, August 13, 13
Tuesday, August 13, 13
Hokey Pokey!!
Tuesday, August 13, 13
Each to her Own
• http://ruby-doc.org/core-2.0/
Enumerable.html
• http://www.ruby-doc.org/docs/
ProgrammingRuby/html/tut_modules.html
Tuesday, August 13, 13
GingerGriffis@hotmail.com
github.com/ggriffis
http://www.linkedin.com/in/gingergriffis
@GingerGriffis
Tuesday, August 13, 13

Weitere ähnliche Inhalte

Andere mochten auch

Colorado school of public health environmental and occupational health master...
Colorado school of public health environmental and occupational health master...Colorado school of public health environmental and occupational health master...
Colorado school of public health environmental and occupational health master...bmw100360
 
萬用 Ghost win 7 映像檔製作教學
萬用 Ghost win 7 映像檔製作教學萬用 Ghost win 7 映像檔製作教學
萬用 Ghost win 7 映像檔製作教學SeanRuan
 
Colorado School of Public Health Environmental and Occupational Health Master...
Colorado School of Public Health Environmental and Occupational Health Master...Colorado School of Public Health Environmental and Occupational Health Master...
Colorado School of Public Health Environmental and Occupational Health Master...bmw100360
 
Org development for bbm ii sem bangalore university
Org development for bbm ii sem bangalore universityOrg development for bbm ii sem bangalore university
Org development for bbm ii sem bangalore universityTriyogi Triyogi
 
Organisational development b.com vith sem (optional) Bangalore University
Organisational development b.com vith sem (optional) Bangalore UniversityOrganisational development b.com vith sem (optional) Bangalore University
Organisational development b.com vith sem (optional) Bangalore UniversityTriyogi Triyogi
 

Andere mochten auch (7)

Colorado school of public health environmental and occupational health master...
Colorado school of public health environmental and occupational health master...Colorado school of public health environmental and occupational health master...
Colorado school of public health environmental and occupational health master...
 
萬用 Ghost win 7 映像檔製作教學
萬用 Ghost win 7 映像檔製作教學萬用 Ghost win 7 映像檔製作教學
萬用 Ghost win 7 映像檔製作教學
 
In-the-Bag Program_PPT_5_v3
In-the-Bag Program_PPT_5_v3In-the-Bag Program_PPT_5_v3
In-the-Bag Program_PPT_5_v3
 
Compiled_Finalbook.v.5
Compiled_Finalbook.v.5Compiled_Finalbook.v.5
Compiled_Finalbook.v.5
 
Colorado School of Public Health Environmental and Occupational Health Master...
Colorado School of Public Health Environmental and Occupational Health Master...Colorado School of Public Health Environmental and Occupational Health Master...
Colorado School of Public Health Environmental and Occupational Health Master...
 
Org development for bbm ii sem bangalore university
Org development for bbm ii sem bangalore universityOrg development for bbm ii sem bangalore university
Org development for bbm ii sem bangalore university
 
Organisational development b.com vith sem (optional) Bangalore University
Organisational development b.com vith sem (optional) Bangalore UniversityOrganisational development b.com vith sem (optional) Bangalore University
Organisational development b.com vith sem (optional) Bangalore University
 

Ähnlich wie Enumerables

Just Enough Category Theory for Haskell, part 1
Just Enough Category Theory for Haskell, part 1Just Enough Category Theory for Haskell, part 1
Just Enough Category Theory for Haskell, part 1Heejong Ahn
 
The Enumerable Module or How I Fell in Love with Ruby
The Enumerable Module or How I Fell in Love with RubyThe Enumerable Module or How I Fell in Love with Ruby
The Enumerable Module or How I Fell in Love with Rubyharisamin
 
02._Object-Oriented_Programming_Concepts.ppt
02._Object-Oriented_Programming_Concepts.ppt02._Object-Oriented_Programming_Concepts.ppt
02._Object-Oriented_Programming_Concepts.pptYonas D. Ebren
 
CS 151 Classes lecture
CS 151 Classes lectureCS 151 Classes lecture
CS 151 Classes lectureRudy Martinez
 
Ruby object model - Understanding of object play role for ruby
Ruby object model - Understanding of object play role for rubyRuby object model - Understanding of object play role for ruby
Ruby object model - Understanding of object play role for rubyTushar Pal
 
Search and Sort algorithms. Bubble, Insertion, Selection.
Search and Sort algorithms. Bubble, Insertion, Selection.Search and Sort algorithms. Bubble, Insertion, Selection.
Search and Sort algorithms. Bubble, Insertion, Selection.FerryKemperman
 

Ähnlich wie Enumerables (6)

Just Enough Category Theory for Haskell, part 1
Just Enough Category Theory for Haskell, part 1Just Enough Category Theory for Haskell, part 1
Just Enough Category Theory for Haskell, part 1
 
The Enumerable Module or How I Fell in Love with Ruby
The Enumerable Module or How I Fell in Love with RubyThe Enumerable Module or How I Fell in Love with Ruby
The Enumerable Module or How I Fell in Love with Ruby
 
02._Object-Oriented_Programming_Concepts.ppt
02._Object-Oriented_Programming_Concepts.ppt02._Object-Oriented_Programming_Concepts.ppt
02._Object-Oriented_Programming_Concepts.ppt
 
CS 151 Classes lecture
CS 151 Classes lectureCS 151 Classes lecture
CS 151 Classes lecture
 
Ruby object model - Understanding of object play role for ruby
Ruby object model - Understanding of object play role for rubyRuby object model - Understanding of object play role for ruby
Ruby object model - Understanding of object play role for ruby
 
Search and Sort algorithms. Bubble, Insertion, Selection.
Search and Sort algorithms. Bubble, Insertion, Selection.Search and Sort algorithms. Bubble, Insertion, Selection.
Search and Sort algorithms. Bubble, Insertion, Selection.
 

Kürzlich hochgeladen

Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 

Kürzlich hochgeladen (20)

Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 

Enumerables

  • 2. Enumerable is a Module Mixin Tuesday, August 13, 13
  • 3. What the eff is that?? Tuesday, August 13, 13
  • 4. What is a Module? • A Module is a collection of methods and constants. • Similar to a regular Class but without the concept of instantiation • Used as a standalone entity, it can help with namespacing Tuesday, August 13, 13
  • 6. So..What is a Mixin? • A Mixin is a Module • A SPECIAL type of Module Tuesday, August 13, 13
  • 7. Special How? • A Mixin happens when you include a Module within a Class • Instance Methods come to life! • Allows a sense of multiple inheritance • 2 objects marry and the result is greater than the sum of the parts Tuesday, August 13, 13
  • 8. So, as I was saying, Enumerable is a Module Mixin • Provides Collection type classes with traversal, searching, and sorting functionality Tuesday, August 13, 13
  • 9. Examples in Standard Ruby Library • Some of your BFFs include Enumerable • Array, Hash, Set • Range, File Tuesday, August 13, 13
  • 10. Some Cool Enumerable Methods • all? (do all items return true for the block) • any? (do any items return true for the block) • collect (make new collection with results) • count • detect (return the first item that returns true for the block) • find • first • grep (return all items that === a pattern) • inject (iterates through the collection with an accumulator) • reject (returns all items that return false for the block) • select (returns all items that return true for the block) Tuesday, August 13, 13
  • 11. Methods that must be defined if a class includes Enumerable • each (basically some flavor of yielding to a block for each element in your object) • If the class wishes to use the max, min, or sort functions provided by Enumerable • The “each” items of the collection must implement <=> • Combined comparison operator. Returns 0 if first operand equals second, 1 if first operand is greater than the second and -1 if first operand is less than the second. Tuesday, August 13, 13
  • 12. And NOW for the fun part! Tuesday, August 13, 13
  • 13. Mixin Match You can add the Enumerable Module to your own classes! Tuesday, August 13, 13
  • 16. Each to her Own • http://ruby-doc.org/core-2.0/ Enumerable.html • http://www.ruby-doc.org/docs/ ProgrammingRuby/html/tut_modules.html Tuesday, August 13, 13