Path to this page:
./
devel/go-impl,
Generate method stubs for implementing an interface
Branch: CURRENT,
Version: 1.1.0nb26,
Package name: go-impl-1.1.0nb26,
Maintainer: bsiegertimpl generates method stubs for implementing an interface.
Sample usage:
$ impl 'f *File' io.ReadWriteCloser
func (f *File) Read(p []byte) (n int, err error) {
panic("not implemented")
}
func (f *File) Write(p []byte) (n int, err error) {
panic("not implemented")
}
func (f *File) Close() error {
panic("not implemented")
}
Master sites:
Filesize: 9.9 KB
Version history: (Expand)
- (2024-09-06) Updated to version: go-impl-1.1.0nb26
- (2024-08-11) Updated to version: go-impl-1.1.0nb25
- (2024-07-03) Updated to version: go-impl-1.1.0nb24
- (2024-06-13) Updated to version: go-impl-1.1.0nb23
- (2024-06-01) Updated to version: go-impl-1.1.0nb22
- (2024-04-05) Updated to version: go-impl-1.1.0nb21
CVS history: (Expand)