FileMood

Download Pluralsight - From Collections to Streams in Java 8 Using Lambda Expressions

Pluralsight From Collections to Streams in Java Using Lambda Expressions

Name

Pluralsight - From Collections to Streams in Java 8 Using Lambda Expressions

  DOWNLOAD Copy Link

Trouble downloading? see How To

Total Size

492.3 MB

Total Files

114

Hash

949DE81E511A07F352ADE8A41D0A7471DB4642F3

/01. LambdaExpressions and FunctionalInterfaces/

01_01-Introduction to the Course.mp4

5.4 MB

01_02-What Are You Going to Learn in This Course.mp4

3.7 MB

01_03-Agenda of the Course.mp4

2.4 MB

01_04-Who Are You What Should You Know to Follow This Course.mp4

2.7 MB

01_05-Agenda of This Module.mp4

1.5 MB

01_06-Lambda Expression Introduction, Instances of Anonymous Classes.mp4

5.8 MB

01_07-Lambda Expression Passing Code as a Parameter.mp4

3.6 MB

01_08-Let Us Write Our First, Simple Lambda Expressions.mp4

5.8 MB

01_09-Lambda Expression Remarks and Precisions.mp4

3.2 MB

01_10-Method References A First Example with an Instance Method.mp4

3.8 MB

01_11-Method References A Second Example with a Static Method.mp4

3.5 MB

01_12-Method References The System.out.println Pattern.mp4

2.3 MB

01_13-How to Create New API Default and Static Methods in Interfaces.mp4

3.6 MB

01_14-Live Coding Introduction The Comparator Example.mp4

1.5 MB

01_15-Implementing a Comparator with Lambda Expressions.mp4

6.4 MB

01_16-Comparing by Age, Last Name, and First Name.mp4

2.8 MB

01_17-Refactoring the Comparison with a Key Extractor.mp4

6.1 MB

01_18-Implementing the Comparator.comparing Static Method.mp4

8.6 MB

01_19-Making the Key Extractor Generic, Returning Comparable Objects.mp4

6.6 MB

01_20-Chaining Comparators with the thenComparing Default Method.mp4

6.9 MB

01_21-Writing the Comparator.thenComparing Implementation.mp4

5.0 MB

01_22-Writing the Final Comparator Creation and Chaining Pattern.mp4

9.0 MB

01_23-Wrapup of the Module.mp4

2.7 MB

/02. Writing Data Processing Functions with Lambdas in Java 8/

02_01-Introduction to the Module.mp4

2.2 MB

02_02-What Is a Functional Interface The Predicate Example.mp4

3.3 MB

02_03-How to Implement a Functional Interface with a Lambda Expression.mp4

3.8 MB

02_04-How Does the Compiler Recognize the Type of a Lambda Expression.mp4

7.6 MB

02_05-A Lambda Is Still an Interface with Usable Methods.mp4

1.2 MB

02_06-Functional Interface The Complete and Exact Definition.mp4

5.7 MB

02_07-How to Use the @FunctionalInterface Annotation.mp4

4.7 MB

02_08-The Four Categories of the java.util.function Package.mp4

1.7 MB

02_09-First Category The Consumers.mp4

1.6 MB

02_10-Second Category The Supplier.mp4

2.1 MB

02_11-Third Category The Functions.mp4

3.8 MB

02_12-Fourth Category The Predicates.mp4

1.8 MB

02_13-Functional Interfaces for Java Primitive Types.mp4

2.2 MB

02_14-Introduction to the Live Coding Section The Predicate Example.mp4

3.3 MB

02_15-Writing and Using a First, Simple Predicate Lambda Expression.mp4

4.7 MB

02_16-Chaining Predicates with the AND Boolean Operation.mp4

4.9 MB

02_17-Adding a and Method on the Predicate Functional Interface.mp4

4.5 MB

02_18-Implementing the and Default method on the Predicate Interface.mp4

10.6 MB

02_19-Adding a or Default Method on the Predicate Interface.mp4

10.3 MB

02_20-Creating Predicates with a Static Call on a Functional Interface.mp4

9.2 MB

02_21-Making the isEqualsTo Method Generic of the Predicate Interface.mp4

5.2 MB

02_22-Live Coding Wrapup.mp4

1.8 MB

02_23-Module Wrapup, Presentation of the Next Module.mp4

2.4 MB

/03. Data Processing Using Lambdas and the Collection Framework/

03_01-Introduction to the Module.mp4

1.7 MB

03_02-First Methods on Iterable, Collection and List.mp4

6.3 MB

03_03-First Method on Map forEach.mp4

2.6 MB

03_04-More Methods on Map getOrDefault.mp4

3.4 MB

03_05-More Methods on Map putIfAbsent.mp4

4.0 MB

03_06-More Methods on Map replace and replaceAll.mp4

3.2 MB

03_07-New Pattern on Map remove.mp4

860.7 KB

03_08-New Patterns on Map The compute method.mp4

3.4 MB

03_09-New Patterns on Map computeIfAbsent, computeIfPresent.mp4

4.6 MB

03_10-Building Maps of Maps and Maps of Lists with computeIfAbsent.mp4

6.2 MB

03_11-New Pattern on Map The merge method.mp4

3.8 MB

03_12-Using merge to Merge Two Maps Together.mp4

6.5 MB

03_13-Live Coding Session Introduction, forEach in Action.mp4

6.7 MB

03_14-Methods removeIf, replaceAll, sort in Action.mp4

10.3 MB

03_15-Setting Default Value for map.get getOrDefault.mp4

6.3 MB

03_16-Adding Default key value pairs putIfAbsent, computeIfAbsent.mp4

8.8 MB

03_17-Merging Maps with the map.merge Method.mp4

12.9 MB

03_18-Merging Maps Analysis of the Result.mp4

5.9 MB

03_19-Live Coding and Module Wrapup.mp4

3.8 MB

/04. Implementing Map Filter Reduce Using Lambdas and Collections/

04_01-Introduction to the Module.mp4

2.0 MB

04_02-Computing the Average of People Older than 20, Taken From a List.mp4

4.1 MB

04_03-Map filter reduce A Precise Explaination.mp4

4.5 MB

04_04-A First Implementation, in the JDK7 Way.mp4

4.7 MB

04_05-A Closer Look at the Reduction Step How Does it Work.mp4

2.8 MB

04_06-Parallel Implementation of the Reduction Step.mp4

2.7 MB

04_07-First Caveat Nonassociative Reduction Operations.mp4

6.9 MB

04_08-How to Detect Nonassociative Reduction Operations.mp4

4.3 MB

04_09-Second Caveat Reduction of a Singleton.mp4

4.7 MB

04_10-Second Caveat Reduction of a Set with Several Elements.mp4

4.4 MB

04_11-Second Caveat Reduction That Do Not Have Identity Element.mp4

1.7 MB

04_12-Live Coding Setting up the Environment.mp4

7.1 MB

04_13-Simulating Parallel Computation of a Nonassociative Reduction.mp4

10.6 MB

04_14-Nonassociative Reduction The Average Reduction Operation.mp4

5.5 MB

04_15-Computing a Max Reduction with No Identity Element.mp4

7.2 MB

04_16-Live Coding Wrapup.mp4

1.7 MB

04_17-Using Optionals to Handle Reductions with No Identity Element.mp4

1.8 MB

04_18-Wrapup on the Reduction Step.mp4

1.2 MB

04_19-Implementation in the JDK7 Way a Closer Look.mp4

1.9 MB

04_20-CPU Load and Memory Footprint Evaluations.mp4

5.7 MB

04_21-Example of an allMatch Reduction Operation Lost Optimizations.mp4

4.3 MB

04_22-Why Is this First, Naive Implementation Should be Avoided.mp4

4.5 MB

04_23-A First Glimpse at the Stream API.mp4

2.4 MB

04_24-Module Wrapup.mp4

3.2 MB

/05. The Stream API, How to Build Streams, First Patterns/

05_01-Introduction to the Module.mp4

1.7 MB

05_02-A First Technical Definition of the Stream Interface.mp4

3.0 MB

05_03-First Definitions of the Concept of Stream.mp4

3.5 MB

05_04-The Notion of Unbounded Stream.mp4

5.0 MB

05_05-How to Build Streams Empty Streams, Singletons, varargs.mp4

3.9 MB

05_06-How to Build Streams The Generator and Iterator Pattern.mp4

3.9 MB

05_07-How to Build Streams on Strings, Regular Expressions, and Text Files.mp4

4.8 MB

05_08-The Stream.Builder Pattern.mp4

3.7 MB

05_09-The map filter reduce Pattern Written with a Stream.mp4

5.1 MB

05_10-A Second Example of the ap filter reduce Pattern on Streams.mp4

3.0 MB

05_11-Intermediate and Terminal Calls on Streams peek and forEach.mp4

5.5 MB

05_12-How to Tell an Intermediate Call from a Terminal Call.mp4

3.5 MB

05_13-Selecting Ranges of Data in Streams skip and limit.mp4

4.9 MB

05_14-Simple Reductions Matchers, Shortcircuiting Reductions.mp4

2.9 MB

05_15-Finder Reductions, Use of Optionals.mp4

2.4 MB

05_16-Example of Finder Reductions findFirst, findAny.mp4

2.6 MB

05_17-General Reductions Use of the reduce Method.mp4

6.7 MB

05_18-Live Coding Session Introduction.mp4

1.4 MB

05_19-Example of a First Simple Stream Built on a vararg.mp4

3.9 MB

05_20-Building a Stream The Generate Pattern, Use of Limit.mp4

3.9 MB

05_21-Building a Stream The Iterate Pattern.mp4

5.6 MB

05_22-Bulding Streams of Random Numbers Using Random.ints.mp4

4.3 MB

05_23-Live Coding Session Wrapup.mp4

1.5 MB

05_24-Module and Course Wrapup.mp4

2.2 MB

/Exercise files/

java8lambdaexpressionscollectionsstreams.zip

749.9 KB

 

Total files 114


Copyright © 2025 FileMood.com