Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

Scans through a list of objects, terminating on and returning the first member which matches a predicate function.


{section}
{column:width=70%}

Scans through a list of objects, terminating on and returning the first member which matches a predicate function.

{code:javascript|borderStyle=none|bgColor=white}
fluid.find(list, fn, deflt);
File name:

{code}

*File name:* {{Fluid.js

Parameters

}}

h2. Parameters

{span:class=borderless-table
}
|*{{source}}*| (Arrayable \| Object) The list or hash of objects to be searched.
 |
|*{{fn}}*| (Function) A predicate function, acting on a list member. A predicate which returns any value which is not {{null}} or {{undefined}} will terminate the search. The function has the signature (object, index).
 |
|*{{deflt}}*| (Object) (optional) A value to be returned in the case no predicate function matches a list member. The default will be the natural value of
undefined

Return Value

Div
class
Wiki Markup
{div:class=api-page
}

h1. fluid.find(list, fn, deflt)
Section
Column
width70%
Code Block
javascriptjavascript
bgColorwhite
borderStylenone
Span
class

source

fn

deflt

Span
classborderless-table

Object

the first object in the list that matches the predicate function, or deflt if nothing does

Column
width5%
Column

See Also

Example

Code Blockjavascriptjavascript
 {{undefined}} |
{span}

h2. Return Value
{span:class=borderless-table}
|*Object*| the first object in the list that matches the predicate function, or {{deflt}} if nothing does |
{span}

{column}

{column:width=5%}
{column}

{column}
h3. See Also

{column}
{section}
----

h3. Example
{code:javascript}
var findColIndex = function (item, layout) {
    return fluid.find(layout.columns,
                      function (column, colIndex) {
                          return item === column.container? colIndex : undefined;
                      });
};
{code}
The function {{findColIndex}} uses {{fluid.find}} to examine a list of columns. The anonymous function being passed as the second argument compares each column's {{container}} property against the desired {{item}} and returns the index of the column if it matches. {{fluid.find}} will apply this function to each item in the column list and return the first column that matches.

{div}