Searched defs:TextSpan (Results 1 – 4 of 4) sorted by relevance
31 struct TextSpan { struct32 size_t start;33 size_t length;
31 struct TextSpan { struct34 TextSpan(size_t s, size_t l) : start(s), length(l) {} in TextSpan() function
117 class TextSpan(NamedTuple): class123 def __or__(self, other: "TextSpan") -> "TextSpan":
221 export interface TextSpan { interface