mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-04 06:36:24 +00:00
Infrastructure for simple internal hyperlink handling
This commit is contained in:
parent
9e688720a6
commit
51472e1e88
7 changed files with 217 additions and 20 deletions
|
|
@ -41,6 +41,10 @@ func (self *Set[T]) Has(val T) bool {
|
|||
return ok
|
||||
}
|
||||
|
||||
func (self *Set[T]) Clear() {
|
||||
clear(self.items)
|
||||
}
|
||||
|
||||
func (self *Set[T]) Len() int {
|
||||
return len(self.items)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue