- Author: Mark Allen Weiss
- Publisher: Addison-Wesley, 1999
- ISBN-10: 0-201-35754-2 (0201357542)
- ISBN-13: 978-0-201-35754-7 (9780201357547)
Wikipedia: Abstract data type - Wikipedia
Textbooks:
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import AppKit | |
let app = NSApplication.shared | |
app.setActivationPolicy(.regular) | |
let window = NSWindow( | |
contentRect: NSMakeRect(0, 0, 640, 480), | |
styleMask: [.titled, .closable], | |
backing: .buffered, | |
defer: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# The first release available is golang:1.2.0 | |
major=1 | |
minor=2 | |
patch=0 | |
while true | |
do | |
while true |
This is not an exhaustive list of all interfaces in Go's standard library.
I only list those I think are important.
Interfaces defined in frequently used packages (like io
, fmt
) are included.
Interfaces that have significant importance are also included.
All of the following information is based on go version go1.8.3 darwin/amd64
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Shortest GUI program written in Golang. | |
// It displays a window and exits when the "close" button of the window is clicked. | |
package main | |
import ( | |
"golang.org/x/exp/shiny/driver" | |
"golang.org/x/exp/shiny/screen" | |
// Despite that the package names have a "mobile" prefix, | |
// these packages works on desktop. |
NewerOlder