Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for IsStmt (0.19 sec)

  1. src/database/sql/driver/types.go

    // It exists for compatibility.
    func IsScanValue(v any) bool {
    	return IsValue(v)
    }
    
    // DefaultParameterConverter is the default implementation of
    // [ValueConverter] that's used when a [Stmt] doesn't implement
    // [ColumnConverter].
    //
    // DefaultParameterConverter returns its argument directly if
    // IsValue(arg). Otherwise, if the argument implements [Valuer], its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:30:20 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/go/ast/commentmap.go

    			r.next()
    		}
    
    		// update previous node
    		p = q
    		pend = fset.Position(p.End())
    
    		// update previous node group if we see an "important" node
    		switch q.(type) {
    		case *File, *Field, Decl, Spec, Stmt:
    			stack.push(q)
    		}
    	}
    
    	return cmap
    }
    
    // Update replaces an old node in the comment map with the new node
    // and returns the new node. Comments that were associated with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top