Sunday, December 22, 2024
6.5 C
London

The Most Awaited Feature “List Contains” is Now Available – Spring’18

Yes, you heard it right! Now no more replicating List to Set. You can directly use contains over List.

Salesforce Spring ’18 Release

contains(listElement):

Same as a set, it will return true if a list contains an element.

List<String> listStrings = new List<String>();
listStrings.add(“One”);
listStrings.add(“Two”);
listStrings.add(“Three”);
listStrings.add(“Four”);
System.debug('Check Contains Four-->'+ listStrings.contains('Four'));

Output:

Check Contains Four–>True

indexOf(listElement):

You can consider as an extra feature. It returns the position of the element and if the element is no there it returns -1.

List<String> listStrings = new List<String>();
listStrings.add(“One”);
listStrings.add(“Two”);
listStrings.add(“Three”);
listStrings.add(“Four”);
System.debug(‘Index of Ten–>’+ listStrings.indexOf(‘Ten’));

Output:

Index of Ten–>-1

Keep Smiling!!!!

Happy Coding 🙂

Hot this week

How to Best Providing Dissertation Writing Services

7 Tips for Choosing the Right Dissertation Topic""Navigating the...

The Wedding Dresses: Finding Your Dream Gown

Choosing a wedding dress is one of the most...

Exploring Bangalore’s Real Estate Boom: A Guide to New and Upcoming Projects

Bangalore is a city that is renowned for its...

12 Ways Edge Servers Accelerate Limitless Growth

As new digital frontiers emerge, businesses pursue growth without...

Lab Grown Diamond Bracelets: The Epitome of Ethical Luxury

In the world of luxury accessories, lab grown diamond...

Topics

How to Best Providing Dissertation Writing Services

7 Tips for Choosing the Right Dissertation Topic""Navigating the...

The Wedding Dresses: Finding Your Dream Gown

Choosing a wedding dress is one of the most...

12 Ways Edge Servers Accelerate Limitless Growth

As new digital frontiers emerge, businesses pursue growth without...

Lab Grown Diamond Bracelets: The Epitome of Ethical Luxury

In the world of luxury accessories, lab grown diamond...

The Essential Guide to Choosing the Right Tax Consultant for Your UAE Business

Navigating the complexities of tax laws in the UAE...

How to Choose the Right Car Tinting Service in Dubai

Car tinting is not just about enhancing the appearance...

Related Articles

Popular Categories