Skip to content
Snippets Groups Projects
Commit d5624615 authored by Adam Radziszewski's avatar Adam Radziszewski
Browse files

convenienct after_space func in Token

parent a5ebd59c
Branches
No related merge requests found
......@@ -90,6 +90,11 @@ public:
void set_wa(const PwrNlp::Whitespace::Enum& wa) {
wa_ = wa;
}
/// If any whitespace came before this token.
bool after_space() const {
return wa_ != PwrNlp::Whitespace::None;
}
/// Lexemes getter
const std::vector<Lexeme>& lexemes() const {
......
......@@ -37,6 +37,7 @@ namespace Corpus2 {
const PwrNlp::Whitespace::Enum& wa() const;
void set_wa(const PwrNlp::Whitespace::Enum& wa);
bool after_space() const;
const std::vector<Lexeme>& lexemes() const;
std::vector<Lexeme>& lexemes();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment