com.mayabot.nlp.segment.pipeline.PipelineLexerBuilderKts.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mynlp Show documentation
Show all versions of mynlp Show documentation
Maya Nlp subproject :mynlp
package com.mayabot.nlp.segment.pipeline
import com.mayabot.nlp.segment.FluentLexerBuilder
import com.mayabot.nlp.segment.Lexer
fun lexerBuilder(blocker: FluentLexerBuilder.() -> Unit): Lexer {
val builder = FluentLexerBuilder()
builder.blocker()
return builder.build()
}