From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: poffice@blade.nagaokaut.ac.jp Delivered-To: poffice@blade.nagaokaut.ac.jp Received: from kankan.nagaokaut.ac.jp (kankan.nagaokaut.ac.jp [133.44.2.24]) by blade.nagaokaut.ac.jp (Postfix) with ESMTP id E6A2B19C0029 for ; Fri, 6 Nov 2015 10:52:14 +0900 (JST) Received: from voscc.nagaokaut.ac.jp (voscc.nagaokaut.ac.jp [133.44.1.100]) by kankan.nagaokaut.ac.jp (Postfix) with ESMTP id 13E46B5D936 for ; Fri, 6 Nov 2015 11:21:17 +0900 (JST) Received: from neon.ruby-lang.org (neon.ruby-lang.org [221.186.184.75]) by voscc.nagaokaut.ac.jp (Postfix) with ESMTP id 4056318CC7F1 for ; Fri, 6 Nov 2015 11:21:16 +0900 (JST) Received: from [221.186.184.76] (localhost [IPv6:::1]) by neon.ruby-lang.org (Postfix) with ESMTP id 039581204F0; Fri, 6 Nov 2015 11:21:15 +0900 (JST) X-Original-To: ruby-core@ruby-lang.org Delivered-To: ruby-core@ruby-lang.org Received: from o2.heroku.sendgrid.net (o2.heroku.sendgrid.net [67.228.50.55]) by neon.ruby-lang.org (Postfix) with ESMTPS id 57D22120475 for ; Fri, 6 Nov 2015 11:21:10 +0900 (JST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sendgrid.me; h=from:to:references:subject:mime-version:content-type:content-transfer-encoding:list-id; s=smtpapi; bh=fwjBcDcgOSf7YTLPqLa2w4iveRc=; b=ax5ikWpdzwDFlQNIbn ayd7XtOmeS5AKK/NV1IVT/uWcSy3OIOfLOfOIcuRBKwLuDL7zrUdl9ZtcJK9A8pf OI4gZyQqyj/34NC3ud6HM7D9nOhCGLFUlYcefSJX44kpsLGWgLWrIf1+duIsxkx5 l7xz9FyxBkeJy1GtJ9kx8jJrk= Received: by filter-407.sjc1.sendgrid.net with SMTP id filter-407.720.563C0E9223 2015-11-06 02:21:06.720923818 +0000 UTC Received: from herokuapp.com (ec2-107-22-66-12.compute-1.amazonaws.com [107.22.66.12]) by ismtpd0004p1iad1.sendgrid.net (SG) with ESMTP id 9B1Jamh_TCqd8sE1wjkZ7Q for ; Fri, 06 Nov 2015 02:21:06.927 +0000 (UTC) Date: Fri, 06 Nov 2015 02:21:06 +0000 From: nobu@ruby-lang.org To: ruby-core@ruby-lang.org Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Redmine-MailingListIntegration-Message-Ids: 46006 X-Redmine-Project: ruby-trunk X-Redmine-Issue-Id: 11537 X-Redmine-Issue-Author: hsbt X-Redmine-Issue-Assignee: matz X-Redmine-Sender: nobu X-Mailer: Redmine X-Redmine-Host: bugs.ruby-lang.org X-Redmine-Site: Ruby Issue Tracking System X-Auto-Response-Suppress: All Auto-Submitted: auto-generated X-SG-EID: ync6xU2WACa70kv/Ymy4QrNMhiuLXJG8OTL2vJD1yS5Gu2rfRA6FTgIgNk9p1DcENDaa0Xyy/n9F3e kqjjvkYym6/FD0aUUnYMSQUxfBOcLrHqeDKgJFGuozqOEezbwtKx0OoWlTGVpKFy26MIuzsokl0qpu UhitNEqSgQZw6ik= X-ML-Name: ruby-core X-Mail-Count: 71365 Subject: [ruby-core:71365] [Ruby trunk - Feature #11537] Introduce "Safe navigation operator" X-BeenThere: ruby-core@ruby-lang.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: Ruby developers List-Id: Ruby developers List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: ruby-core-bounces@ruby-lang.org Sender: "ruby-core" Issue #11537 has been updated by Nobuyoshi Nakada. Binary operators implicitly continue the next line, without a backslash. e.g., ~~~ruby foo + 1 ~~~ is same as `foo + 1`. If `\` were become a binary operator, there is an ambiguity. ~~~ruby foo \ 1 ~~~ is `foo(1)` (current interpretation) or `foo\1`? ---------------------------------------- Feature #11537: Introduce "Safe navigation operator" https://bugs.ruby-lang.org/issues/11537#change-54735 * Author: Hiroshi SHIBATA * Status: Closed * Priority: Normal * Assignee: Yukihiro Matsumoto ---------------------------------------- I sometimes write following code with rails application: ```ruby u = User.find(id) if u && u.profile && u.profile.thumbnails && u.profiles.thumbnails.large ... ``` or ```ruby # Use ActiveSupport if u.try!(:profile).try!(:thumbnails).try!(:large) ... ``` I hope to write shortly above code. Groovy has above operator named "Safe navigation operator" with "`?.`" syntax. Ruby can't use "`?.`" operator. Can we use "`.?`" syntax. like this: ```ruby u = User.find(id) u.?profile.?thumbnails.?large ``` Matz. How do you think about this? -- https://bugs.ruby-lang.org/