blob: da3f26af6954d57e3ff80703c147fb18d580ac6b [file] [log] [blame]
Athijegannathan Sundararajan8270add2014-05-07 20:20:58 +05301/*
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
Attila Szegedi4f4ccbc2014-08-20 10:25:28 +02003 *
Athijegannathan Sundararajan8270add2014-05-07 20:20:58 +05304 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
Attila Szegedi4f4ccbc2014-08-20 10:25:28 +02007 *
Athijegannathan Sundararajan8270add2014-05-07 20:20:58 +05308 * - Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
Attila Szegedi4f4ccbc2014-08-20 10:25:28 +020010 *
Athijegannathan Sundararajan8270add2014-05-07 20:20:58 +053011 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
Attila Szegedi4f4ccbc2014-08-20 10:25:28 +020014 *
Athijegannathan Sundararajan8270add2014-05-07 20:20:58 +053015 * - Neither the name of Oracle nor the names of its
16 * contributors may be used to endorse or promote products derived
17 * from this software without specific prior written permission.
Attila Szegedi4f4ccbc2014-08-20 10:25:28 +020018 *
Athijegannathan Sundararajan8270add2014-05-07 20:20:58 +053019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
20 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32// generate/print 100 uniformly distributed random values
33// and print summary statistics on it
34
35var DoubleStream = Java.type("java.util.stream.DoubleStream");
36
37// pass script function when a lambda is required
38// Math.random passed here for double generator lambda
39// print passed to forEach method
40
41DoubleStream
42 .generate(Math.random)
43 .limit(100)
44 .forEach(print);
45
46print(DoubleStream
47 .generate(Math.random)
48 .limit(100)
49 .summaryStatistics());