def sentence_split(*args):
  return _clinkgrammar.sentence_split(*args)
示例#2
0
def sentence_split(*args) -> "int" :
  return _clinkgrammar.sentence_split(*args)
示例#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)
示例#4
0
def sentence_split(sent, opts):
    return _clinkgrammar.sentence_split(sent, opts)
示例#5
0
 def split(self):
     return clg.sentence_split(self._obj)
示例#6
0
def sentence_split(sent: 'Sentence', opts: 'Parse_Options') -> "int":
    return _clinkgrammar.sentence_split(sent, opts)
示例#7
0
 def split(self):
     return clg.sentence_split(self._obj)
示例#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)
示例#9
0
def sentence_split(*args) -> "int":
    return _clinkgrammar.sentence_split(*args)