Merter Sualp created THRIFT-4286:
------------------------------------
Summary: Composite Constants Defined by Other Constants
Key: THRIFT-4286
URL: https://issues.apache.org/jira/browse/THRIFT-4286
Project: Thrift
Issue Type: New Feature
Reporter: Merter Sualp
We would like to define constants by using previously defined constants.
*Example 1:*
const string PREFIX = "prefix/path"
const string SUFFIX = "suffix/path"
const string CONCATENATION = PREFIX + "/" + SUFFIX
// which will yield to prefix/path/suffix/path
*Example 2:*
const i32 MULTIPLICAND = 25
const i32 MULTIPLIER = 4
const i32 PRODUCT = MULTIPLICAND * MULTIPLIER
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)