File: comparisons.go

package info (click to toggle)
golang-github-kshedden-dstream 0.0~git20190512.c4c4106-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 596 kB
  • sloc: makefile: 30
file content (6 lines) | stat: -rw-r--r-- 153 bytes parent folder | download
1
2
3
4
5
6
package dstream

// Equal returns true if the two Dstream values have equal contents.
func Equal(x, y Dstream) bool {
	return EqualReport(x, y, false)
}