Skip to content

Instantly share code, notes, and snippets.

@kenandersen
Last active August 29, 2015 14:08
Show Gist options
  • Save kenandersen/64fc3c72921ce490c397 to your computer and use it in GitHub Desktop.
Save kenandersen/64fc3c72921ce490c397 to your computer and use it in GitHub Desktop.
A reference describing collections in Salesforce's Apex language

Collections in Apex for Salesforce.md

####Header Apex has three types of collections:

  1. Lists
  • A simple ordered list.
  1. Maps
  • A collection of key-value pairs. Keys and values are determined by the user. Lists are basically a map where they key is a number.
  1. Sets
  • A simple unordered list.

######For more information reference the offical Salesforce/Apex documentation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment