mirror of
https://github.com/cheat/cheat.git
synced 2024-11-01 05:31:01 +01:00
16 lines
293 B
Go
16 lines
293 B
Go
|
package sheet
|
||
|
|
||
|
// Tagged returns true if a sheet was tagged with `needle`
|
||
|
func (s *Sheet) Tagged(needle string) bool {
|
||
|
|
||
|
// if any of the tags match `needle`, return `true`
|
||
|
for _, tag := range s.Tags {
|
||
|
if tag == needle {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// otherwise, return `false`
|
||
|
return false
|
||
|
}
|