MCPcopy Create free account
hub / github.com/B33pBeeps/redthread / FindNote

Method FindNote

internal/app/notes.go:486–493  ·  view source on GitHub ↗
(id string)

Source from the content-addressed store, hash-verified

484}
485
486func (b *Board) FindNote(id string) *Note {
487 for _, n := range b.Notes {
488 if n.ID == id {
489 return n
490 }
491 }
492 return nil
493}
494
495func (b *Board) Connect(fromID, toID string) *StringConn {
496 if fromID == toID || fromID == "" || toID == "" {

Callers 5

findNoteMethod · 0.80
drawBoardSnapshotFunction · 0.80
PosMethod · 0.80
drawStringsInFrontFunction · 0.80
drawAllStringsFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected