def sentence_split(*args):
  return _clinkgrammar.sentence_split(*args)
Beispiel #2
0
def sentence_split(*args) -> "int" :
  return _clinkgrammar.sentence_split(*args)
Beispiel #3
0
 def split(self, parse_options=None):
     if not parse_options:
         parse_options = self.parse_options
     return clg.sentence_split(self._obj, parse_options._obj)
Beispiel #4
0
def sentence_split(sent, opts):
    return _clinkgrammar.sentence_split(sent, opts)
 def split(self):
     return clg.sentence_split(self._obj)
Beispiel #6
0
def sentence_split(sent: 'Sentence', opts: 'Parse_Options') -> "int":
    return _clinkgrammar.sentence_split(sent, opts)
Beispiel #7
0
 def split(self):
     return clg.sentence_split(self._obj)
Beispiel #8
0
 def split(self, parse_options=None):
     if not parse_options:
         parse_options = self.parse_options
     return clg.sentence_split(self._obj, parse_options._obj)
Beispiel #9
0
def sentence_split(*args) -> "int":
    return _clinkgrammar.sentence_split(*args)