Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Closure (0.11 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <magic priority="30">
          <match value="#ifndef " type="string" offset="0"/>
        </magic>
        <sub-class-of type="text/plain"/>
      </mime-type>
    
      <mime-type type="text/x-clojure">
        <_comment>Clojure source code</_comment>
        <glob pattern="*.clj"/>
        <sub-class-of type="text/plain"/>
      </mime-type>
    
      <mime-type type="text/x-coffeescript">
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. doc/go_spec.html

    </p>
    
    <pre>
    f := func(x, y int) int { return x + y }
    func(ch chan int) { ch &lt;- ACK }(replyChan)
    </pre>
    
    <p>
    Function literals are <i>closures</i>: they may refer to variables
    defined in a surrounding function. Those variables are then shared between
    the surrounding function and the function literal, and they survive as long
    as they are accessible.
    </p>
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
Back to top