Alyaa Talaatalyaatalaat28.hashnode.dev·Oct 18, 2024Iterator and Composite Patterns – Head First ApproachIn this article, we will explore two powerful behavioral design patterns: Iterator and Composite. These patterns provide efficient ways to traverse collections and manage complex hierarchical structures. By using them, we can simplify client code whi...iterator design pattern
Venu Madhav Emmadivenumadhavemmadi.hashnode.dev·Jul 13, 20243.5 - Iterator Pattern: Behavioral Design PatternsThe Iterator Pattern is a behavioral design pattern that provides a way to sequentially access the elements of a collection without exposing the underlying structure. It separates the process of traversal from the actual collection, promoting loose c...1 likeDesign Patterns in Software Engineeringiterator design pattern
Bruce Wellsblog.phpfui.com·Jun 26, 2023Iterators and Database Cursors in PHPIn my last post, I was talking about designing classes and identified some requirements for an ORM I could envision but not find an implementation for. I laid out some requirements, but I don't think I completely thought out what was needed for a nic...1 like·149 readsPHP
Clinttechtruth.dev·May 4, 2023Design Patterns: Iterator PatternThe Iterator pattern is a behavioral design pattern that provides a way to access the elements of a collection object sequentially without exposing its underlying representation. This pattern is suitable for projects where there is a need to traverse...27 readsDesign Patternsiterator design pattern
Aditya Chaudhariwww.adityatechinsights.com·Sep 18, 2022Iterator Design Pattern - Java - ExplainedIntent Provides a way to access the elements of an aggregate object sequentially without expositing its underlying representation. An iterator design pattern is also known as Cursor. This is the type of behavioral design pattern where it helps traver...65 readsDesign Patternsdesign patterns