Interface QtConcurrent.MappedFunctor<U,T>

Enclosing class:
QtConcurrent
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface QtConcurrent.MappedFunctor<U,T>
Implement this interface to perform a mapped operation. An implementation of the interface is sendt to ome of the mapped methods of QtConcurrent, which applies the MappedFunctor.map() method to all elements in a collection, and returns the result.
  • Method Summary

    Modifier and Type
    Method
    Description
    map(T object)
    This method is called for each object in a collection.
  • Method Details

    • map

      U map(T object)
      This method is called for each object in a collection. It should returned a new altered object.