User contributions for Ovidiu
Jump to navigation
Jump to search
14 August 2024
- 17:2417:24, 14 August 2024 diff hist +53 Go Functions →Named Result Parameters
- 17:2317:23, 14 August 2024 diff hist +27 Go Functions →Naked return
- 17:1917:19, 14 August 2024 diff hist +387 Go Functions →Named Result Parameters
- 17:1717:17, 14 August 2024 diff hist +42 Go Functions →Return Value Naming
- 17:1517:15, 14 August 2024 diff hist +40 Go Language Error Handling →Error Basics current
- 17:1417:14, 14 August 2024 diff hist +312 Go Functions →Return Declaration
- 17:0717:07, 14 August 2024 diff hist +32 Go Functions →Anonymous Functions (Lambdas)
- 17:0517:05, 14 August 2024 diff hist +3,338 Go Functions →Overloading
- 17:0417:04, 14 August 2024 diff hist −3,340 Go Functions →Built-in Functions
- 17:0317:03, 14 August 2024 diff hist −31 Go Functions →defer and panic
- 17:0017:00, 14 August 2024 diff hist −29 Go Functions →Pass-by-value vs. pass-by-pointer vs. pass-by-reference
- 16:5816:58, 14 August 2024 diff hist −6 Go Functions →Function Parameters and Return Value Scope
- 16:5616:56, 14 August 2024 diff hist +1 Go Functions →The return Statement
- 16:5516:55, 14 August 2024 diff hist 0 Go Functions →The return Statement
- 16:5416:54, 14 August 2024 diff hist 0 Go Functions →Return Declaration
- 16:5316:53, 14 August 2024 diff hist −1 Go Functions →Return Declaration
- 16:5316:53, 14 August 2024 diff hist −7 Go Functions →Parameter Naming
- 16:5116:51, 14 August 2024 diff hist −19 Go Functions →Parameters
- 16:5016:50, 14 August 2024 diff hist +1 Go Functions →Declaration
- 16:4916:49, 14 August 2024 diff hist +7 Go Functions →Declaration
- 16:4916:49, 14 August 2024 diff hist −9 Go Functions →Declaration
- 16:4816:48, 14 August 2024 diff hist +12 Go Functions →Overview
- 16:4616:46, 14 August 2024 diff hist +169 Go Type Switch →Overview
- 16:4416:44, 14 August 2024 diff hist +142 Go Type Switch →Overview
- 16:4216:42, 14 August 2024 diff hist +105 Go Type Switch →Overview
- 16:4016:40, 14 August 2024 diff hist +107 Go Language →Pointers
- 16:3916:39, 14 August 2024 diff hist +229 Go Type Switch →Overview
- 16:3216:32, 14 August 2024 diff hist 0 m Go Type Assertion Ovidiu moved page Go Type Assertions to Go Type Assertion without leaving a redirect
- 16:3216:32, 14 August 2024 diff hist −1 Go Type Switch No edit summary
- 16:3116:31, 14 August 2024 diff hist −1 Go Pipelines No edit summary current
- 16:3116:31, 14 August 2024 diff hist −21 Go Custom Error Types No edit summary current
- 16:3016:30, 14 August 2024 diff hist −17 Go Language No edit summary
- 16:2916:29, 14 August 2024 diff hist +31 Go Language No edit summary
- 16:2816:28, 14 August 2024 diff hist −1 Go Interfaces No edit summary
13 August 2024
- 23:3223:32, 13 August 2024 diff hist +46 Go Type Switch →Internal
- 23:3123:31, 13 August 2024 diff hist +49 Go Interfaces →Type Switch
- 23:3023:30, 13 August 2024 diff hist +54 Go Type Assertion →Overview
- 23:3023:30, 13 August 2024 diff hist +309 Go Type Assertion →Overview
- 23:2723:27, 13 August 2024 diff hist +50 Go Type Switch →Internal
- 23:2623:26, 13 August 2024 diff hist +347 N Go Type Switch Created page with "=Internal= =Overview= A type switch is a new control structure introduced by Go. Type assertion with <code>switch</code>: <syntaxhighlight lang='go'> var i SomeInterface i = TypeA{"A"} switch v := i.(type) { case TypeA: fmt.Printf("TypeA: %v\n", v) case TypeB: fmt.Printf("TypeB: %v\n", v) } </syntaxhighlight>"
- 23:2623:26, 13 August 2024 diff hist +42 Go Type Assertion →Internal
- 23:2623:26, 13 August 2024 diff hist −340 Go Type Assertion →Type Switch
- 23:2623:26, 13 August 2024 diff hist −17 Go Type Assertion →Type Assertion
- 23:2623:26, 13 August 2024 diff hist −732 Go Type Assertion →Overview
- 23:2423:24, 13 August 2024 diff hist +81 Go Type Assertion →Overview
- 23:1723:17, 13 August 2024 diff hist 0 Go Interfaces →Type Assertion
- 23:1723:17, 13 August 2024 diff hist −1 Go Interfaces →Type Assertion
- 23:1623:16, 13 August 2024 diff hist +92 Go Interfaces →Type Assertion
- 23:1623:16, 13 August 2024 diff hist −75 Go Interfaces →Type Assertions
- 23:1523:15, 13 August 2024 diff hist +209 Go Interfaces →nil Interface Value