Skip to content

Instantly share code, notes, and snippets.

View EricDw's full-sized avatar
🤔
Always Thinking

Eric De Wildt EricDw

🤔
Always Thinking
View GitHub Profile
@EricDw
EricDw / Pipelines.kt
Last active November 22, 2018 04:16
Added an output channel.
class PipelineBuilder<I, O>(
actorScope: ActorScope<I>,
outputChannel: Channel<O>
) : ActorScope<I> by actorScope {
}
@EricDw
EricDw / Program.kt
Created February 15, 2019 14:52
KotlinFunctionsProgram
@file:Suppress("KDocUnresolvedReference")
package com.examples.standardfunctions
import androidx.annotation.Nullable
import java.util.*
import java.util.function.Function
// region Person