Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for sendto (0.24 sec)

  1. src/reflect/value.go

    		val = Value{}
    	}
    	return
    }
    
    // Send sends x on the channel v.
    // It panics if v's kind is not [Chan] or if x's type is not the same type as v's element type.
    // As in Go, x's value must be assignable to the channel's element type.
    func (v Value) Send(x Value) {
    	v.mustBe(Chan)
    	v.mustBeExported()
    	v.send(x, false)
    }
    
    // internal send, possibly non-blocking.
    // v is known to be a channel.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. RELEASE.md

    RajeshT, Renato Golin, riestere, Roger Iyengar, Rohit Santhanam, Rsanthanam-Amd,
    Sadeed Pv, Samuel Marks, Shimokawa, Naoaki, Siddhesh Kothadi, Simengliu-Nv,
    Sindre Seppola, snadampal, Srinivasan Narayanamoorthy, sushreebarsa,
    syedshahbaaz, Tamas Bela Feher, Tatwai Chong, Thibaut Goetghebuer-Planchon,
    tilakrayal, Tom Anderson, Tomohiro Endo, Trevor Morris, vibhutisawant,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top