Skip to content
Snippets Groups Projects
Select Git revision
  • 5488cfd769cbae3f760679323f1a4ce43b9e9a35
  • main default protected
  • dev protected
  • hotfixes-oct-2022
  • refactor/avatar-cell
  • 1.1.5
  • 1.1.4
  • 1.1.3
  • 1.1
  • 1.0.8
  • 1.0.7
  • 1.0.6
12 results

IDEWorkspaceChecks.plist

Blame
  • roundList.go 296 B
    package bindings
    
    import "gitlab.com/xx_network/primitives/id"
    
    type roundList struct {
    	list []id.Round
    }
    
    // RoundList contains a list of contacts
    type RoundList interface {
    	// Len returns the number of contacts in the list
    	Len() int
    	// Get returns the round ID at index i
    	Get(i int) int
    }