MS3:L6:Lambdas,Streams,AggsOpsVersion en ligne Java concepts, Terms and Definitions par steve finch 1 Aggregate Operations 2 Pipeline 3 Lambdas 4 Functional Interface Use Lambdas to perform actions on objects in a collection Use internal iteration Process items items from a stream, not directly from a Collection Support Lambda operations as parameters A sequence of aggregate operations Are made up of a data source Are made up of zero or more intermediate operations Include one terminal operation Return a non-stream result Allow us to pass functionality into methods as parameters Their parameters are specified by a functional interface Are defined much like other methods Can be assigned to a variable and passed around like data Has only one method Specifies what type of Lambda can be passed into a given stream Includes Predicate Includes Consumer Includes ToIntFunction