Skip to content

Instantly share code, notes, and snippets.

View skelterjohn's full-sized avatar

John Asmuth skelterjohn

  • Google
  • New York, New York
View GitHub Profile
type SorterDefault []MyType
func (s SorterDefault) Len() int { return len(s)}
func (s SorterDefault) Swap(i, j int) { s[i], s[j] = s[j], s[i]}
type Sorter1 struct { SorterDefault }
func (s Sorter1) Less(i, j int) bool { ... }
type Sorter2 struct { SorterDefault }
/*cgopkg.go*/
package cgopkg
//#include <stdlib.h>
//#include "cgopkg.h"
import "C"
import (
"unsafe"
)
func Foo() {
chi := C.CString("hi")
{{range .Stuff}}
{{if .(ElementA)}}string:{{.X}} int:{{.Y}}{{end}}
{{if .(ElementB)}}int:{{.X}} string:{{.Y}}{{end}}
{{end}}
func Redirect(wr io.Writer, data interface{}) {
switch data.(type) {
case ElementA:
templateA.Execute(wr, data)
case ElementB:
templateB.Execute(wr, data)
}
}
loop:
for {
select {
case <-me.stopChan:
break loop
default:
compute()
}
}
package main
import "fmt"
type MySlice []int
func main() {
s := MySlice{1,2,3,4}
for i, v := range s {
fmt.Println(i, v)
### Keybase proof
I hereby claim:
* I am skelterjohn on github.
* I am skelterjohn (https://keybase.io/skelterjohn) on keybase.
* I have a public key whose fingerprint is C9C7 4C86 285C CDA8 EEE3 D652 32EF D206 7A14 956A
To claim this, I am signing this object: