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 9B2DD19E0032 for ; Mon, 7 Dec 2015 16:20:57 +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 A5C2BB5D8BA for ; Mon, 7 Dec 2015 16:52:34 +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 419E118CC7B1 for ; Mon, 7 Dec 2015 16:52:35 +0900 (JST) Received: from [221.186.184.76] (localhost [IPv6:::1]) by neon.ruby-lang.org (Postfix) with ESMTP id 34B061204D9; Mon, 7 Dec 2015 16:52:35 +0900 (JST) X-Original-To: ruby-core@ruby-lang.org Delivered-To: ruby-core@ruby-lang.org Received: from o10.shared.sendgrid.net (o10.shared.sendgrid.net [173.193.132.135]) by neon.ruby-lang.org (Postfix) with ESMTPS id 4CF0412049A for ; Mon, 7 Dec 2015 16:52:31 +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=VXjulnk+5i5of2Y0FfxPf+5wbcU=; b=Y6wtt8vseSJi99IXmE Jer8wMWi2Y/A3Uo42hhDyrctOfZyAP7Tewj0zcejbAXDdqyH0zZmDThr58qxOMHG 7HizWOCaSwERjuiUds+bc49tXY64/l5QNvUg7vQJsXbVMufB0MtA14SxgcFmB5Ox w7H8xCEJC1ZlBZinCox/rI3FA= Received: by filter0490p1mdw1.sendgrid.net with SMTP id filter0490p1mdw1.23648.56653ABCF 2015-12-07 07:52:28.121338328 +0000 UTC Received: from herokuapp.com (ec2-54-144-8-248.compute-1.amazonaws.com [54.144.8.248]) by ismtpd0005p1iad1.sendgrid.net (SG) with ESMTP id eALnozGrTfCMV46LlnYh7A Mon, 07 Dec 2015 07:52:28.061 +0000 (UTC) Date: Mon, 07 Dec 2015 07:52:27 +0000 From: ko1@atdot.net 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: 46589 X-Redmine-Project: ruby-trunk X-Redmine-Issue-Id: 11734 X-Redmine-Issue-Author: kaoss X-Redmine-Sender: ko1 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/Ymy4QrNMhiuLXJG8OTL2vJD1yS4Srk6ZGSpPkPduLtsQeXdrVE5g486FkHbUpg BcxHel3V2yMl7Xu0sw8HgsOGQ3Sid+Lek/pgEQj3qMkDqcsv0f8NrHJoMKgmYE1irvE7BiP/HmK9Y1 fdV7IUC3o2anOtRbtQHCO4ZkjzlUk0OwdqkH X-ML-Name: ruby-core X-Mail-Count: 71892 Subject: [ruby-core:71892] [Ruby trunk - Feature #11734] [Closed] Improved ternary 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 #11734 has been updated by Koichi Sasada. Status changed from Open to Closed ---------------------------------------- Feature #11734: Improved ternary operator https://bugs.ruby-lang.org/issues/11734#change-55298 * Author: Yurko Bregey * Status: Closed * Priority: Normal * Assignee: ---------------------------------------- In ternary operator it would be nice to be able to pass expression result from *condition* into *value_if_true/value_if_false* in such way: `some_long_expression ? &.to_s : 'foobar'` where `&` refers to `some_long_expression` Instead of doing: `some_long_expression ? some_long_expression.to_s : 'foobar'` or: `result = some_very_very_long_expression result ? result.to_s : 'foobar'` -- https://bugs.ruby-lang.org/