Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for toIndex (0.1 sec)

  1. ChangeLog.md

    - [`KT-63258`](https://youtrack.jetbrains.com/issue/KT-63258) NPE with function reference from within lambda during init
    - [`KT-60597`](https://youtrack.jetbrains.com/issue/KT-60597) K1: IllegalArgumentException: fromIndex(0) > toIndex(-1) when wrapping receiver with backticks
    - [`KT-33108`](https://youtrack.jetbrains.com/issue/KT-33108) USELESS_CAST false positive for cast inside lambda
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	case ir.ODOTPTR:
    		n := n.(*ir.SelectorExpr)
    		p := s.exprPtr(n.X, n.Bounded(), n.Pos())
    		p = s.newValue1I(ssa.OpOffPtr, types.NewPtr(n.Type()), n.Offset(), p)
    		return s.load(n.Type(), p)
    
    	case ir.OINDEX:
    		n := n.(*ir.IndexExpr)
    		switch {
    		case n.X.Type().IsString():
    			if n.Bounded() && ir.IsConst(n.X, constant.String) && ir.IsConst(n.Index, constant.Int) {
    				// Replace "abc"[1] with 'b'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top