This is about coldfusion...
I have an array of structs in which I would like to get only dictinct values. What is the best way to test if a structure already exists in my array before inserting this one ? Should it be possible to test this with contains(javacast(...)) ?
Thank you in advance, Michel
Finally I found how to add a portion of code :)
<cfset count = 0>
<cfset foo = []>
<cfif this struct does not exists in the array...>
<cfset count = count + 1>
<cfset foo[count] = {key = currentBar.getValue(), value = anotherValueVar}
</cfif>
Hope this will help...
Thank you, Michel