Tabnine Logo
BiTransformable.bipeek
Code IndexAdd Tabnine to your IDE (free)

How to use
bipeek
method
in
com.oath.cyclops.types.functor.BiTransformable

Best Java code snippets using com.oath.cyclops.types.functor.BiTransformable.bipeek (Showing top 12 results out of 315)

origin: aol/cyclops

@Override
default LazyEither4<LT1, LT2, LT3, RT> bipeek(final Consumer<? super LT3> c1, final Consumer<? super RT> c2) {
  return (LazyEither4<LT1, LT2, LT3, RT>) BiTransformable.super.bipeek(c1, c2);
}
origin: aol/cyclops

@Override
default LazyEither3<LT1, LT2, RT> bipeek(final Consumer<? super LT2> c1, final Consumer<? super RT> c2) {
  return (LazyEither3<LT1, LT2, RT>) BiTransformable.super.bipeek(c1, c2);
}
origin: aol/cyclops

@Override
default Either<LT, RT> bipeek(Consumer<? super LT> c1, Consumer<? super RT> c2) {
  return (Either<LT, RT>)BiTransformable.super.bipeek(c1, c2);
}
origin: aol/cyclops

@Override
default ImmutableMap<K, V> bipeek(Consumer<? super K> c1, Consumer<? super V> c2) {
  return (ImmutableMap<K,V>)BiTransformable.super.bipeek(c1,c2);
}
origin: aol/cyclops

@Override
default LazyEither5<LT1, LT2, LT3, LT4, RT> bipeek(final Consumer<? super LT4> c1, final Consumer<? super RT> c2) {
  return (LazyEither5<LT1, LT2, LT3,LT4, RT>) BiTransformable.super.bipeek(c1, c2);
}
origin: aol/cyclops

@Override
default Ior<LT, RT> bipeek(final Consumer<? super LT> c1, final Consumer<? super RT> c2) {
  return (Ior<LT, RT>) BiTransformable.super.bipeek(c1, c2);
}
origin: com.oath.cyclops/cyclops

@Override
default Either<LT, RT> bipeek(Consumer<? super LT> c1, Consumer<? super RT> c2) {
  return (Either<LT, RT>)BiTransformable.super.bipeek(c1, c2);
}
origin: com.oath.cyclops/cyclops

@Override
default ImmutableMap<K, V> bipeek(Consumer<? super K> c1, Consumer<? super V> c2) {
  return (ImmutableMap<K,V>)BiTransformable.super.bipeek(c1,c2);
}
origin: com.oath.cyclops/cyclops

@Override
default LazyEither4<LT1, LT2, LT3, RT> bipeek(final Consumer<? super LT3> c1, final Consumer<? super RT> c2) {
  return (LazyEither4<LT1, LT2, LT3, RT>) BiTransformable.super.bipeek(c1, c2);
}
origin: com.oath.cyclops/cyclops

@Override
default LazyEither5<LT1, LT2, LT3, LT4, RT> bipeek(final Consumer<? super LT4> c1, final Consumer<? super RT> c2) {
  return (LazyEither5<LT1, LT2, LT3,LT4, RT>) BiTransformable.super.bipeek(c1, c2);
}
origin: com.oath.cyclops/cyclops

@Override
default LazyEither3<LT1, LT2, RT> bipeek(final Consumer<? super LT2> c1, final Consumer<? super RT> c2) {
  return (LazyEither3<LT1, LT2, RT>) BiTransformable.super.bipeek(c1, c2);
}
origin: com.oath.cyclops/cyclops

@Override
default Ior<LT, RT> bipeek(final Consumer<? super LT> c1, final Consumer<? super RT> c2) {
  return (Ior<LT, RT>) BiTransformable.super.bipeek(c1, c2);
}
com.oath.cyclops.types.functorBiTransformablebipeek

Javadoc

Peek at two data types simulatanously (typically to perform a side-effect with each data point)
 
MapX map = MapXs.of("hello",2);

Popular methods of BiTransformable

  • bimap
    Transform this BiTransformable, changing two value types at once. MapX map = MapXs.of("hello",2);

Popular in Java

  • Reading from database using SQL prepared statement
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • putExtra (Intent)
  • getResourceAsStream (ClassLoader)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • JCheckBox (javax.swing)
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now