File: node_golang.go

package info (click to toggle)
golang-github-dgraph-io-ristretto 2.3.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,004 kB
  • sloc: ansic: 78; asm: 37; makefile: 15
file content (10 lines) | stat: -rw-r--r-- 139 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
//go:build !jemalloc
// +build !jemalloc

package main

func newNode(val int) *node {
	return &node{val: val}
}

func freeNode(n *node) {}