text() {
const arr = this.sentences.map(function(s) {
return s.text();
});
return fns.flatten(arr).join(' ');
}
normalized() {
const arr = this.sentences.map(function(s) {
return s.normalized();
});
return fns.flatten(arr).join(' ');
}
terms() {
const arr = this.sentences.map(function(s) {
return s.terms;
});
return fns.flatten(arr);
}
normalised() {
const arr = this.sentences.map(function(s) {
return s.normalized();
});
return fns.flatten(arr).join(' ');
}
tags() {
return this.sentences.map(function(s) {
return s.tags();
});
}
to_past() {
return this.sentences.map(function(s) {
return s.to_past();
});
}
to_present() {
return this.sentences.map(function(s) {
return s.to_present();
});
}
to_future() {
return this.sentences.map(function(s) {
return s.to_future();
});
}
negate() {
return this.sentences.map(function(s) {
return s.negate();
});
}