Created
June 26, 2016 20:32
-
-
Save lfreeland/2ed6ad88e1d76a5a64826c45cbacd5c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // records populated | |
| List<SObject> records = ...; | |
| Set<Id> recordIds = new Set<Id>(); | |
| for (SObject record : records) { | |
| recordIds.add(record.Id); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment