Iterate Within For Loops More Easily with Iterable In #SalesforceWinter24Release

You can now iterate through lists or sets effortlessly using the Iterable variable in a for loop. 

Here's an example that demonstrates how to use the Iterable variable to iterate through a list of strings:

Iterable<String> stringIterator = new List<String>{'Hello', 'World!'};
for (String str : stringIterator) {
  System.debug(str);
}

And here's another example that showcases implementing an Iterable interface, followed by iterating through the strings in the returned set of strings:

public class MyIterable implements Iterable<String> {
  public Iterator<String> iterator() {
    return new Set<String>{'Hello', 'World!'}.iterator();
  }
}

for (String str : new MyIterable()) {
  System.debug(str);
}

Follow Us

Posted By : Sudeer Kamat Date :

view_module Related

  • Transfer Ownership of Lightning Dashboards (Beta) In #SalesforceWinter24ReleaseTransfer Ownership of Lightning Dashboards (Beta) In #SalesforceWinter24Release
  • Use Filters to Find Record-Triggered Flows Quickly In #SalesforceWinter24ReleaseUse Filters to Find Record-Triggered Flows Quickly In #SalesforceWinter24Release
  • Meet RecordAction: The Unsung Hero of Salesforce's Actions & RecommendationsMeet RecordAction: The Unsung Hero of Salesforce's Actions & Recommendations
  • Query All Files Permission To Retrieve ContentDocumentLink Object In #SalesforceWinter24ReleaseQuery All Files Permission To Retrieve ContentDocumentLink Object In #SalesforceWinter24Release
  • Contact Intelligence View In #SalesforceWinter24ReleaseContact Intelligence View In #SalesforceWinter24Release

label Labels

Comments 0