🚀 Launch Week Day 4:Introducing the Alert Details Page: A Better Way to Explore Alerts.Learn More →
Socket
Book a DemoInstallSign in
Socket

winterdrache.de/golib

Package Overview
Dependencies
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

winterdrache.de/golib

Go Modules
Version
v0.0.0-20180611202533-782cc2630c6f
Version published
Created
Source

golib

Library of utility code for Go programs

util

Various utility functions. Of particular interest are the logging and base64 functions.

deque

A data structure that can serve as FIFO, LIFO, vector, array, list, stack, queue, buffer, channel, inter-process-communication mechanism. It's synchronized so that it can be used by multiple goroutines in parallel. It can be used blocking (with timeouts) and non-blocking. Its speed and memory-usage are appropriate for most situations. Basically, whenever you need a non-tree data structure, just use this one, and only consider something else after you've tried it and have encountered a specific reasons why it doesn't work in that situation.

bytes

An alternative to bytes/buffer from the standard Go library. Unlike the standard version this one is based on malloc()/free(). This is useful when you are dealing with very large buffers and need to control their lifetime manually to avoid out-of-memory issues.

FAQs

Package last updated on 11 Jun 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts