Go Standard Library Cookbook :: Over 120 specific ways to make full use of the standard library components in Golang.
Google's Golang is the next talk of the town, with amazing features and a powerful library. This book will gear you up by taking you through recipes that will teach you how to leverage the standard library to implement a particular solution. This will enable Go developers to take advantage of u...
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Elektronisch E-Book |
Sprache: | English |
Veröffentlicht: |
Birmingham :
Packt Publishing,
2018.
|
Schlagworte: | |
Online-Zugang: | Volltext |
Zusammenfassung: | Google's Golang is the next talk of the town, with amazing features and a powerful library. This book will gear you up by taking you through recipes that will teach you how to leverage the standard library to implement a particular solution. This will enable Go developers to take advantage of using a rock-solid standard library instead of ... |
Beschreibung: | How to do it ... |
Beschreibung: | 1 online resource (330 pages) |
ISBN: | 9781788391672 1788391675 1788475275 9781788475273 |
Internformat
MARC
LEADER | 00000cam a2200000Mi 4500 | ||
---|---|---|---|
001 | ZDB-4-EBA-on1028215575 | ||
003 | OCoLC | ||
005 | 20241004212047.0 | ||
006 | m o d | ||
007 | cr cnu---unuuu | ||
008 | 180310s2018 enk o 000 0 eng d | ||
040 | |a EBLCP |b eng |e pn |c EBLCP |d IDB |d MERUC |d CHVBK |d VT2 |d TEFOD |d OCLCQ |d LVT |d C6I |d UKAHL |d N$T |d OCLCF |d OCLCQ |d NLW |d OCLCO |d UKMGB |d OCLCO |d NZAUC |d OCLCQ |d OCLCO | ||
015 | |a GBC200141 |2 bnb | ||
016 | 7 | |a 018815400 |2 Uk | |
020 | |a 9781788391672 |q (electronic bk.) | ||
020 | |a 1788391675 |q (electronic bk.) | ||
020 | |a 1788475275 | ||
020 | |a 9781788475273 | ||
024 | 3 | |a 9781788475273 | |
035 | |a (OCoLC)1028215575 | ||
037 | |a B08892 |b 01201872 | ||
037 | |a 52767DF3-F360-4E27-8BEE-B5705AABA7E4 |b OverDrive, Inc. |n http://www.overdrive.com | ||
050 | 4 | |a QA76.73.G63 |b .S645 2018eb | |
072 | 7 | |a COM |x 051010 |2 bisacsh | |
082 | 7 | |a 005.133 |2 23 | |
049 | |a MAIN | ||
100 | 1 | |a Sohlich, Radomír. | |
245 | 1 | 0 | |a Go Standard Library Cookbook : |b Over 120 specific ways to make full use of the standard library components in Golang. |
260 | |a Birmingham : |b Packt Publishing, |c 2018. | ||
300 | |a 1 online resource (330 pages) | ||
336 | |a text |b txt |2 rdacontent | ||
337 | |a computer |b c |2 rdamedia | ||
338 | |a online resource |b cr |2 rdacarrier | ||
588 | 0 | |a Print version record. | |
505 | 0 | |a Cover; Title Page; Copyright and Credits; Packt Upsell; Contributors; Table of Contents; Preface; Chapter 1: Interacting with the Environment; Introduction; Retrieving the Golang version; Getting ready; How to do it ... ; How it works ... ; Accessing program arguments; How to do it ... ; How it works ... ; There's moreâ#x80;Œ; Creating a program interface with the flag package; How to do it ... ; How it worksâ#x80;Œ; There's moreâ#x80;Œ; Getting and setting environment variables with default values; How to do itâ#x80;Œ; How it worksâ#x80;Œ; Retrieving the current working directory; How to do it ... ; How it worksâ#x80;Œ | |
505 | 8 | |a Getting the current process PIDHow to do itâ#x80;Œ; How it worksâ#x80;Œ; Handling operating system signals; How to do itâ#x80;Œ; How it worksâ#x80;Œ; Calling an external process; Getting ready; How to do itâ#x80;Œ; How it worksâ#x80;Œ; See also; Retrieving child process information; Getting ready; How to do itâ#x80;Œ; How it worksâ#x80;Œ; See also; Reading/writing from the child process; Getting ready; How to do itâ#x80;Œ; How it worksâ#x80;Œ; Shutting down the application gracefully; How to do itâ#x80;Œ; How it worksâ#x80;Œ; See also; File configuration with functional options; How to do it ... ; How it works ... | |
505 | 8 | |a Chapter 2: Strings and ThingsIntroduction; Finding the substring in a string; How to do it ... ; How it works ... ; See also; Breaking the string into words; How to do it ... ; How it works ... ; There's more ... ; Joining the string slice with a separator; How to do it ... ; How it works ... ; There's more ... ; Concatenating a string with writer; How to do it ... ; How it works ... ; There's more ... ; Aligning text with tabwriter; How to do it ... ; How it works ... ; Replacing part of the string; How to do it ... ; How it works ... ; There's more ... ; Finding the substring in text by the regex pattern; How to do it ... | |
505 | 8 | |a How it works ... See also; Decoding a string from the non-Unicode charset; How to do it ... ; How it works ... ; Controlling case; How to do it ... ; How it works ... ; Parsing comma-separated data; How to do it ... ; How it works ... ; Managing whitespace in a string; How to do it ... ; How it works ... ; See also; Indenting a text document; How to do it ... ; How it works ... ; See also; Chapter 3: Dealing with Numbers; Introduction; Converting strings to numbers; How to do it ... ; How it works ... ; Comparing floating-point numbers; How to do it ... ; How it works ... ; Rounding floating-point numbers; How to do it ... | |
505 | 8 | |a How it works ... Floating-point arithmetics; How to do it ... ; How it works ... ; There's more ... ; See also; Formatting numbers; How to do it ... ; How it works ... ; There's more ... ; Converting between binary, octal, decimal, and hexadecimal; How to do it ... ; How it works ... ; Formatting with the correct plurals; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Generating random numbers; How to do it ... ; How it works ... ; Operating complex numbers; How to do it ... ; How it works ... ; Converting between degrees and radians; How to do it ... ; How it works ... ; Taking logarithms. | |
500 | |a How to do it ... | ||
520 | |a Google's Golang is the next talk of the town, with amazing features and a powerful library. This book will gear you up by taking you through recipes that will teach you how to leverage the standard library to implement a particular solution. This will enable Go developers to take advantage of using a rock-solid standard library instead of ... | ||
650 | 0 | |a Go (Computer program language) |0 http://id.loc.gov/authorities/subjects/sh2012000746 | |
650 | 6 | |a Go (Langage de programmation) | |
650 | 7 | |a Computer programming / software development. |2 bicssc | |
650 | 7 | |a Computer networking & communications. |2 bicssc | |
650 | 7 | |a Programming & scripting languages: general. |2 bicssc | |
650 | 7 | |a COMPUTERS |x Programming Languages |x General. |2 bisacsh | |
650 | 7 | |a Go (Computer program language) |2 fast | |
776 | 0 | 8 | |i Print version: |a Sohlich, Radomír. |t Go Standard Library Cookbook : Over 120 specific ways to make full use of the standard library components in Golang. |d Birmingham : Packt Publishing, ©2018 |
856 | 4 | 0 | |l FWS01 |p ZDB-4-EBA |q FWS_PDA_EBA |u https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1728049 |3 Volltext |
938 | |a Askews and Holts Library Services |b ASKH |n BDZ0036267827 | ||
938 | |a EBL - Ebook Library |b EBLB |n EBL5314633 | ||
938 | |a EBSCOhost |b EBSC |n 1728049 | ||
994 | |a 92 |b GEBAY | ||
912 | |a ZDB-4-EBA | ||
049 | |a DE-863 |
Datensatz im Suchindex
DE-BY-FWS_katkey | ZDB-4-EBA-on1028215575 |
---|---|
_version_ | 1816882415346384896 |
adam_text | |
any_adam_object | |
author | Sohlich, Radomír |
author_facet | Sohlich, Radomír |
author_role | |
author_sort | Sohlich, Radomír |
author_variant | r s rs |
building | Verbundindex |
bvnumber | localFWS |
callnumber-first | Q - Science |
callnumber-label | QA76 |
callnumber-raw | QA76.73.G63 .S645 2018eb |
callnumber-search | QA76.73.G63 .S645 2018eb |
callnumber-sort | QA 276.73 G63 S645 42018EB |
callnumber-subject | QA - Mathematics |
collection | ZDB-4-EBA |
contents | Cover; Title Page; Copyright and Credits; Packt Upsell; Contributors; Table of Contents; Preface; Chapter 1: Interacting with the Environment; Introduction; Retrieving the Golang version; Getting ready; How to do it ... ; How it works ... ; Accessing program arguments; How to do it ... ; How it works ... ; There's moreâ#x80;Œ; Creating a program interface with the flag package; How to do it ... ; How it worksâ#x80;Œ; There's moreâ#x80;Œ; Getting and setting environment variables with default values; How to do itâ#x80;Œ; How it worksâ#x80;Œ; Retrieving the current working directory; How to do it ... ; How it worksâ#x80;Œ Getting the current process PIDHow to do itâ#x80;Œ; How it worksâ#x80;Œ; Handling operating system signals; How to do itâ#x80;Œ; How it worksâ#x80;Œ; Calling an external process; Getting ready; How to do itâ#x80;Œ; How it worksâ#x80;Œ; See also; Retrieving child process information; Getting ready; How to do itâ#x80;Œ; How it worksâ#x80;Œ; See also; Reading/writing from the child process; Getting ready; How to do itâ#x80;Œ; How it worksâ#x80;Œ; Shutting down the application gracefully; How to do itâ#x80;Œ; How it worksâ#x80;Œ; See also; File configuration with functional options; How to do it ... ; How it works ... Chapter 2: Strings and ThingsIntroduction; Finding the substring in a string; How to do it ... ; How it works ... ; See also; Breaking the string into words; How to do it ... ; How it works ... ; There's more ... ; Joining the string slice with a separator; How to do it ... ; How it works ... ; There's more ... ; Concatenating a string with writer; How to do it ... ; How it works ... ; There's more ... ; Aligning text with tabwriter; How to do it ... ; How it works ... ; Replacing part of the string; How to do it ... ; How it works ... ; There's more ... ; Finding the substring in text by the regex pattern; How to do it ... How it works ... See also; Decoding a string from the non-Unicode charset; How to do it ... ; How it works ... ; Controlling case; How to do it ... ; How it works ... ; Parsing comma-separated data; How to do it ... ; How it works ... ; Managing whitespace in a string; How to do it ... ; How it works ... ; See also; Indenting a text document; How to do it ... ; How it works ... ; See also; Chapter 3: Dealing with Numbers; Introduction; Converting strings to numbers; How to do it ... ; How it works ... ; Comparing floating-point numbers; How to do it ... ; How it works ... ; Rounding floating-point numbers; How to do it ... How it works ... Floating-point arithmetics; How to do it ... ; How it works ... ; There's more ... ; See also; Formatting numbers; How to do it ... ; How it works ... ; There's more ... ; Converting between binary, octal, decimal, and hexadecimal; How to do it ... ; How it works ... ; Formatting with the correct plurals; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Generating random numbers; How to do it ... ; How it works ... ; Operating complex numbers; How to do it ... ; How it works ... ; Converting between degrees and radians; How to do it ... ; How it works ... ; Taking logarithms. |
ctrlnum | (OCoLC)1028215575 |
dewey-full | 005.133 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 005 - Computer programming, programs, data, security |
dewey-raw | 005.133 |
dewey-search | 005.133 |
dewey-sort | 15.133 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
format | Electronic eBook |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>05963cam a2200613Mi 4500</leader><controlfield tag="001">ZDB-4-EBA-on1028215575</controlfield><controlfield tag="003">OCoLC</controlfield><controlfield tag="005">20241004212047.0</controlfield><controlfield tag="006">m o d </controlfield><controlfield tag="007">cr cnu---unuuu</controlfield><controlfield tag="008">180310s2018 enk o 000 0 eng d</controlfield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">EBLCP</subfield><subfield code="b">eng</subfield><subfield code="e">pn</subfield><subfield code="c">EBLCP</subfield><subfield code="d">IDB</subfield><subfield code="d">MERUC</subfield><subfield code="d">CHVBK</subfield><subfield code="d">VT2</subfield><subfield code="d">TEFOD</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">LVT</subfield><subfield code="d">C6I</subfield><subfield code="d">UKAHL</subfield><subfield code="d">N$T</subfield><subfield code="d">OCLCF</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">NLW</subfield><subfield code="d">OCLCO</subfield><subfield code="d">UKMGB</subfield><subfield code="d">OCLCO</subfield><subfield code="d">NZAUC</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">OCLCO</subfield></datafield><datafield tag="015" ind1=" " ind2=" "><subfield code="a">GBC200141</subfield><subfield code="2">bnb</subfield></datafield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">018815400</subfield><subfield code="2">Uk</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781788391672</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">1788391675</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">1788475275</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781788475273</subfield></datafield><datafield tag="024" ind1="3" ind2=" "><subfield code="a">9781788475273</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)1028215575</subfield></datafield><datafield tag="037" ind1=" " ind2=" "><subfield code="a">B08892</subfield><subfield code="b">01201872</subfield></datafield><datafield tag="037" ind1=" " ind2=" "><subfield code="a">52767DF3-F360-4E27-8BEE-B5705AABA7E4</subfield><subfield code="b">OverDrive, Inc.</subfield><subfield code="n">http://www.overdrive.com</subfield></datafield><datafield tag="050" ind1=" " ind2="4"><subfield code="a">QA76.73.G63</subfield><subfield code="b">.S645 2018eb</subfield></datafield><datafield tag="072" ind1=" " ind2="7"><subfield code="a">COM</subfield><subfield code="x">051010</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="082" ind1="7" ind2=" "><subfield code="a">005.133</subfield><subfield code="2">23</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">MAIN</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Sohlich, Radomír.</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Go Standard Library Cookbook :</subfield><subfield code="b">Over 120 specific ways to make full use of the standard library components in Golang.</subfield></datafield><datafield tag="260" ind1=" " ind2=" "><subfield code="a">Birmingham :</subfield><subfield code="b">Packt Publishing,</subfield><subfield code="c">2018.</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">1 online resource (330 pages)</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="a">text</subfield><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="a">computer</subfield><subfield code="b">c</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="a">online resource</subfield><subfield code="b">cr</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="588" ind1="0" ind2=" "><subfield code="a">Print version record.</subfield></datafield><datafield tag="505" ind1="0" ind2=" "><subfield code="a">Cover; Title Page; Copyright and Credits; Packt Upsell; Contributors; Table of Contents; Preface; Chapter 1: Interacting with the Environment; Introduction; Retrieving the Golang version; Getting ready; How to do it ... ; How it works ... ; Accessing program arguments; How to do it ... ; How it works ... ; There's moreâ#x80;Œ; Creating a program interface with the flag package; How to do it ... ; How it worksâ#x80;Œ; There's moreâ#x80;Œ; Getting and setting environment variables with default values; How to do itâ#x80;Œ; How it worksâ#x80;Œ; Retrieving the current working directory; How to do it ... ; How it worksâ#x80;Œ</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Getting the current process PIDHow to do itâ#x80;Œ; How it worksâ#x80;Œ; Handling operating system signals; How to do itâ#x80;Œ; How it worksâ#x80;Œ; Calling an external process; Getting ready; How to do itâ#x80;Œ; How it worksâ#x80;Œ; See also; Retrieving child process information; Getting ready; How to do itâ#x80;Œ; How it worksâ#x80;Œ; See also; Reading/writing from the child process; Getting ready; How to do itâ#x80;Œ; How it worksâ#x80;Œ; Shutting down the application gracefully; How to do itâ#x80;Œ; How it worksâ#x80;Œ; See also; File configuration with functional options; How to do it ... ; How it works ...</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Chapter 2: Strings and ThingsIntroduction; Finding the substring in a string; How to do it ... ; How it works ... ; See also; Breaking the string into words; How to do it ... ; How it works ... ; There's more ... ; Joining the string slice with a separator; How to do it ... ; How it works ... ; There's more ... ; Concatenating a string with writer; How to do it ... ; How it works ... ; There's more ... ; Aligning text with tabwriter; How to do it ... ; How it works ... ; Replacing part of the string; How to do it ... ; How it works ... ; There's more ... ; Finding the substring in text by the regex pattern; How to do it ...</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">How it works ... See also; Decoding a string from the non-Unicode charset; How to do it ... ; How it works ... ; Controlling case; How to do it ... ; How it works ... ; Parsing comma-separated data; How to do it ... ; How it works ... ; Managing whitespace in a string; How to do it ... ; How it works ... ; See also; Indenting a text document; How to do it ... ; How it works ... ; See also; Chapter 3: Dealing with Numbers; Introduction; Converting strings to numbers; How to do it ... ; How it works ... ; Comparing floating-point numbers; How to do it ... ; How it works ... ; Rounding floating-point numbers; How to do it ...</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">How it works ... Floating-point arithmetics; How to do it ... ; How it works ... ; There's more ... ; See also; Formatting numbers; How to do it ... ; How it works ... ; There's more ... ; Converting between binary, octal, decimal, and hexadecimal; How to do it ... ; How it works ... ; Formatting with the correct plurals; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Generating random numbers; How to do it ... ; How it works ... ; Operating complex numbers; How to do it ... ; How it works ... ; Converting between degrees and radians; How to do it ... ; How it works ... ; Taking logarithms.</subfield></datafield><datafield tag="500" ind1=" " ind2=" "><subfield code="a">How to do it ...</subfield></datafield><datafield tag="520" ind1=" " ind2=" "><subfield code="a">Google's Golang is the next talk of the town, with amazing features and a powerful library. This book will gear you up by taking you through recipes that will teach you how to leverage the standard library to implement a particular solution. This will enable Go developers to take advantage of using a rock-solid standard library instead of ...</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Go (Computer program language)</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh2012000746</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Go (Langage de programmation)</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Computer programming / software development.</subfield><subfield code="2">bicssc</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Computer networking & communications.</subfield><subfield code="2">bicssc</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Programming & scripting languages: general.</subfield><subfield code="2">bicssc</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">COMPUTERS</subfield><subfield code="x">Programming Languages</subfield><subfield code="x">General.</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Go (Computer program language)</subfield><subfield code="2">fast</subfield></datafield><datafield tag="776" ind1="0" ind2="8"><subfield code="i">Print version:</subfield><subfield code="a">Sohlich, Radomír.</subfield><subfield code="t">Go Standard Library Cookbook : Over 120 specific ways to make full use of the standard library components in Golang.</subfield><subfield code="d">Birmingham : Packt Publishing, ©2018</subfield></datafield><datafield tag="856" ind1="4" ind2="0"><subfield code="l">FWS01</subfield><subfield code="p">ZDB-4-EBA</subfield><subfield code="q">FWS_PDA_EBA</subfield><subfield code="u">https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1728049</subfield><subfield code="3">Volltext</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">Askews and Holts Library Services</subfield><subfield code="b">ASKH</subfield><subfield code="n">BDZ0036267827</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">EBL - Ebook Library</subfield><subfield code="b">EBLB</subfield><subfield code="n">EBL5314633</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">EBSCOhost</subfield><subfield code="b">EBSC</subfield><subfield code="n">1728049</subfield></datafield><datafield tag="994" ind1=" " ind2=" "><subfield code="a">92</subfield><subfield code="b">GEBAY</subfield></datafield><datafield tag="912" ind1=" " ind2=" "><subfield code="a">ZDB-4-EBA</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-863</subfield></datafield></record></collection> |
id | ZDB-4-EBA-on1028215575 |
illustrated | Not Illustrated |
indexdate | 2024-11-27T13:28:15Z |
institution | BVB |
isbn | 9781788391672 1788391675 1788475275 9781788475273 |
language | English |
oclc_num | 1028215575 |
open_access_boolean | |
owner | MAIN DE-863 DE-BY-FWS |
owner_facet | MAIN DE-863 DE-BY-FWS |
physical | 1 online resource (330 pages) |
psigel | ZDB-4-EBA |
publishDate | 2018 |
publishDateSearch | 2018 |
publishDateSort | 2018 |
publisher | Packt Publishing, |
record_format | marc |
spelling | Sohlich, Radomír. Go Standard Library Cookbook : Over 120 specific ways to make full use of the standard library components in Golang. Birmingham : Packt Publishing, 2018. 1 online resource (330 pages) text txt rdacontent computer c rdamedia online resource cr rdacarrier Print version record. Cover; Title Page; Copyright and Credits; Packt Upsell; Contributors; Table of Contents; Preface; Chapter 1: Interacting with the Environment; Introduction; Retrieving the Golang version; Getting ready; How to do it ... ; How it works ... ; Accessing program arguments; How to do it ... ; How it works ... ; There's moreâ#x80;Œ; Creating a program interface with the flag package; How to do it ... ; How it worksâ#x80;Œ; There's moreâ#x80;Œ; Getting and setting environment variables with default values; How to do itâ#x80;Œ; How it worksâ#x80;Œ; Retrieving the current working directory; How to do it ... ; How it worksâ#x80;Œ Getting the current process PIDHow to do itâ#x80;Œ; How it worksâ#x80;Œ; Handling operating system signals; How to do itâ#x80;Œ; How it worksâ#x80;Œ; Calling an external process; Getting ready; How to do itâ#x80;Œ; How it worksâ#x80;Œ; See also; Retrieving child process information; Getting ready; How to do itâ#x80;Œ; How it worksâ#x80;Œ; See also; Reading/writing from the child process; Getting ready; How to do itâ#x80;Œ; How it worksâ#x80;Œ; Shutting down the application gracefully; How to do itâ#x80;Œ; How it worksâ#x80;Œ; See also; File configuration with functional options; How to do it ... ; How it works ... Chapter 2: Strings and ThingsIntroduction; Finding the substring in a string; How to do it ... ; How it works ... ; See also; Breaking the string into words; How to do it ... ; How it works ... ; There's more ... ; Joining the string slice with a separator; How to do it ... ; How it works ... ; There's more ... ; Concatenating a string with writer; How to do it ... ; How it works ... ; There's more ... ; Aligning text with tabwriter; How to do it ... ; How it works ... ; Replacing part of the string; How to do it ... ; How it works ... ; There's more ... ; Finding the substring in text by the regex pattern; How to do it ... How it works ... See also; Decoding a string from the non-Unicode charset; How to do it ... ; How it works ... ; Controlling case; How to do it ... ; How it works ... ; Parsing comma-separated data; How to do it ... ; How it works ... ; Managing whitespace in a string; How to do it ... ; How it works ... ; See also; Indenting a text document; How to do it ... ; How it works ... ; See also; Chapter 3: Dealing with Numbers; Introduction; Converting strings to numbers; How to do it ... ; How it works ... ; Comparing floating-point numbers; How to do it ... ; How it works ... ; Rounding floating-point numbers; How to do it ... How it works ... Floating-point arithmetics; How to do it ... ; How it works ... ; There's more ... ; See also; Formatting numbers; How to do it ... ; How it works ... ; There's more ... ; Converting between binary, octal, decimal, and hexadecimal; How to do it ... ; How it works ... ; Formatting with the correct plurals; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Generating random numbers; How to do it ... ; How it works ... ; Operating complex numbers; How to do it ... ; How it works ... ; Converting between degrees and radians; How to do it ... ; How it works ... ; Taking logarithms. How to do it ... Google's Golang is the next talk of the town, with amazing features and a powerful library. This book will gear you up by taking you through recipes that will teach you how to leverage the standard library to implement a particular solution. This will enable Go developers to take advantage of using a rock-solid standard library instead of ... Go (Computer program language) http://id.loc.gov/authorities/subjects/sh2012000746 Go (Langage de programmation) Computer programming / software development. bicssc Computer networking & communications. bicssc Programming & scripting languages: general. bicssc COMPUTERS Programming Languages General. bisacsh Go (Computer program language) fast Print version: Sohlich, Radomír. Go Standard Library Cookbook : Over 120 specific ways to make full use of the standard library components in Golang. Birmingham : Packt Publishing, ©2018 FWS01 ZDB-4-EBA FWS_PDA_EBA https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1728049 Volltext |
spellingShingle | Sohlich, Radomír Go Standard Library Cookbook : Over 120 specific ways to make full use of the standard library components in Golang. Cover; Title Page; Copyright and Credits; Packt Upsell; Contributors; Table of Contents; Preface; Chapter 1: Interacting with the Environment; Introduction; Retrieving the Golang version; Getting ready; How to do it ... ; How it works ... ; Accessing program arguments; How to do it ... ; How it works ... ; There's moreâ#x80;Œ; Creating a program interface with the flag package; How to do it ... ; How it worksâ#x80;Œ; There's moreâ#x80;Œ; Getting and setting environment variables with default values; How to do itâ#x80;Œ; How it worksâ#x80;Œ; Retrieving the current working directory; How to do it ... ; How it worksâ#x80;Œ Getting the current process PIDHow to do itâ#x80;Œ; How it worksâ#x80;Œ; Handling operating system signals; How to do itâ#x80;Œ; How it worksâ#x80;Œ; Calling an external process; Getting ready; How to do itâ#x80;Œ; How it worksâ#x80;Œ; See also; Retrieving child process information; Getting ready; How to do itâ#x80;Œ; How it worksâ#x80;Œ; See also; Reading/writing from the child process; Getting ready; How to do itâ#x80;Œ; How it worksâ#x80;Œ; Shutting down the application gracefully; How to do itâ#x80;Œ; How it worksâ#x80;Œ; See also; File configuration with functional options; How to do it ... ; How it works ... Chapter 2: Strings and ThingsIntroduction; Finding the substring in a string; How to do it ... ; How it works ... ; See also; Breaking the string into words; How to do it ... ; How it works ... ; There's more ... ; Joining the string slice with a separator; How to do it ... ; How it works ... ; There's more ... ; Concatenating a string with writer; How to do it ... ; How it works ... ; There's more ... ; Aligning text with tabwriter; How to do it ... ; How it works ... ; Replacing part of the string; How to do it ... ; How it works ... ; There's more ... ; Finding the substring in text by the regex pattern; How to do it ... How it works ... See also; Decoding a string from the non-Unicode charset; How to do it ... ; How it works ... ; Controlling case; How to do it ... ; How it works ... ; Parsing comma-separated data; How to do it ... ; How it works ... ; Managing whitespace in a string; How to do it ... ; How it works ... ; See also; Indenting a text document; How to do it ... ; How it works ... ; See also; Chapter 3: Dealing with Numbers; Introduction; Converting strings to numbers; How to do it ... ; How it works ... ; Comparing floating-point numbers; How to do it ... ; How it works ... ; Rounding floating-point numbers; How to do it ... How it works ... Floating-point arithmetics; How to do it ... ; How it works ... ; There's more ... ; See also; Formatting numbers; How to do it ... ; How it works ... ; There's more ... ; Converting between binary, octal, decimal, and hexadecimal; How to do it ... ; How it works ... ; Formatting with the correct plurals; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Generating random numbers; How to do it ... ; How it works ... ; Operating complex numbers; How to do it ... ; How it works ... ; Converting between degrees and radians; How to do it ... ; How it works ... ; Taking logarithms. Go (Computer program language) http://id.loc.gov/authorities/subjects/sh2012000746 Go (Langage de programmation) Computer programming / software development. bicssc Computer networking & communications. bicssc Programming & scripting languages: general. bicssc COMPUTERS Programming Languages General. bisacsh Go (Computer program language) fast |
subject_GND | http://id.loc.gov/authorities/subjects/sh2012000746 |
title | Go Standard Library Cookbook : Over 120 specific ways to make full use of the standard library components in Golang. |
title_auth | Go Standard Library Cookbook : Over 120 specific ways to make full use of the standard library components in Golang. |
title_exact_search | Go Standard Library Cookbook : Over 120 specific ways to make full use of the standard library components in Golang. |
title_full | Go Standard Library Cookbook : Over 120 specific ways to make full use of the standard library components in Golang. |
title_fullStr | Go Standard Library Cookbook : Over 120 specific ways to make full use of the standard library components in Golang. |
title_full_unstemmed | Go Standard Library Cookbook : Over 120 specific ways to make full use of the standard library components in Golang. |
title_short | Go Standard Library Cookbook : |
title_sort | go standard library cookbook over 120 specific ways to make full use of the standard library components in golang |
title_sub | Over 120 specific ways to make full use of the standard library components in Golang. |
topic | Go (Computer program language) http://id.loc.gov/authorities/subjects/sh2012000746 Go (Langage de programmation) Computer programming / software development. bicssc Computer networking & communications. bicssc Programming & scripting languages: general. bicssc COMPUTERS Programming Languages General. bisacsh Go (Computer program language) fast |
topic_facet | Go (Computer program language) Go (Langage de programmation) Computer programming / software development. Computer networking & communications. Programming & scripting languages: general. COMPUTERS Programming Languages General. |
url | https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1728049 |
work_keys_str_mv | AT sohlichradomir gostandardlibrarycookbookover120specificwaystomakefulluseofthestandardlibrarycomponentsingolang |