How do I create a new instance of wire.h ?

I want to use my own name for an instance of wire [I2C] comms similar to LCDTFT references.

eg:
const int i_tftCS = A3; const int i_tftCD = A2; const int i_tftWR = A1;
const int i_tftRD = A0; const int i_tftRESET = A4;
Adafruit_ILI9341_8bit_AS my_tft = Adafruit_ILI9341_8bit_AS(i_tftCS, i_tftCD, i_tftWR, i_tftRD, i_tftRESET);

The my_tft is very useful but would like to do same with I2C comms...

Anyone already done this ??
I am new to this board..

Regards colin.

PS: Please note my question was regarding renaming the wire.h appearance not creating multiple instances..
IE: naming it my_wire1 or my_i2c_wire2 etc pre configured with port ids etc.

I want to use my own name for an instance of wire [I2C] comms similar to LCDTFT references.

Why? There are only two pins that can be used, and they are both already in use, if you are using the Wire library.

The beauty with i2c is you can daisy chain them (the devices) together needing only ONE instance of WIRE. No need to make multiple instances, wasting memory.