Warning: Use of undefined constant Symbol - assumed 'Symbol' (this will throw an Error in a future version of PHP) in /mnt/new-ebs/workbench-106550/lib/dojo/util/docscripts/lib/parser2/dojo2.inc on line 215 Warning: Use of undefined constant JavaScriptSymbol - assumed 'JavaScriptSymbol' (this will throw an Error in a future version of PHP) in /mnt/new-ebs/workbench-106550/lib/dojo/util/docscripts/lib/parser2/dojo2.inc on line 215

dojox/lang/functional/scan.js

  • Provides:

    • dojox.lang.functional.scan
  • Requires:

    • dojox.lang.functional.lambda in common
  • dojox.lang.functional.scanl

    • parameters:
      • a: (typeof Array|String|Object)
      • f: (typeof Function|String|Array)
      • z: (typeof Object)
      • o: (typeof Object)
    • returns
      Array
    • summary
      repeatedly applies a binary function to an array from left
      to right using a seed value as a starting point; returns an array
      of values produced by foldl() at that point.
    • type
      Function
  • dojox.lang.functional.scanl1

    • parameters:
      • a: (typeof Array|String|Object)
      • f: (typeof Function|String|Array)
      • o: (typeof Object)
    • returns
      Array
    • summary
      repeatedly applies a binary function to an array from left
      to right; returns an array of values produced by foldl1() at that
      point.
    • type
      Function
  • dojox.lang.functional.scanr

    • parameters:
      • a: (typeof Array|String)
      • f: (typeof Function|String|Array)
      • z: (typeof Object)
      • o: (typeof Object)
    • returns
      Array
    • summary
      repeatedly applies a binary function to an array from right
      to left using a seed value as a starting point; returns an array
      of values produced by foldr() at that point.
    • type
      Function
  • dojox.lang.functional.scanr1

    • parameters:
      • a: (typeof Array|String)
      • f: (typeof Function|String|Array)
      • o: (typeof Object)
    • returns
      Array
    • summary
      repeatedly applies a binary function to an array from right
      to left; returns an array of values produced by foldr1() at that
      point.
    • type
      Function
  • dojo

    • alias - dojo
  • dojox.lang.functional

    • alias - dojox.lang.functional
  • dojox.lang.functional.scan

    • type
      Object
  • dojox.lang

    • type
      Object
  • dojox

    • type
      Object