All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mayabot.nlp.segment.pipeline.PipelineLexerBuilderKts.kt Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
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()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy