Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Holley (0.29 sec)

  1. doc/go1.17_spec.html

    the importing and imported package.
    It is illegal for a package to import itself, directly or indirectly,
    or to directly import a package without
    referring to any of its exported identifiers. To import a package solely for
    its side-effects (initialization), use the <a href="#Blank_identifier">blank</a>
    identifier as explicit package name:
    </p>
    
    <pre>
    import _ "lib/math"
    </pre>
    
    
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    interface{ ~[]byte | myString }           // bytestring
    </pre>
    
    <p>
    Note that <code>bytestring</code> is not a real type; it cannot be used to declare
    variables or compose other types. It exists solely to describe the behavior of some
    operations that read from a sequence of bytes, which may be a byte slice or a string.
    </p>
    
    <h3 id="Type_identity">Type identity</h3>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top