Search

March 21, 2020
Issues »
https://issues.dlang.org/show_bug.cgi?id=12544

Basile-z <b2.temp@gmx.com...
March 21, 2020
Issues »
https://issues.dlang.org/show_bug.cgi?id=16772

Basile-z <b2.temp@gmx.com...
March 21, 2020
Issues »
https://issues.dlang.org/show_bug.cgi?id=7328

Basile-z <b2.temp@gmx.com...
March 21, 2020
Issues »
https://issues.dlang.org/show_bug.cgi?id=17978

Basile-z <b2.temp@gmx.com...
March 21, 2020
Issues »
https://issues.dlang.org/show_bug.cgi?id=18580

Basile-z <b2.temp@gmx.com...
March 19, 2020
General »
...of the data itself:

struct FieldsWrapper
{
    immutable ubyte[][] fields = [[1, 2, 3, 4]];
}
void myAction...
March 19, 2020
General »
...enum APP_RULES = getUDERules!(App);
      void myAction(ubyte[][] fields) (){
              static if( APP_RULES.a  && !APP...
March 19, 2020
General »
...name)
{
    pragma(mangle, name ~ "_myAction")
    void myAction(ubyte[][] fields) ()
    {
    ]
}


Although if you need to use...
March 19, 2020
General »
...like pragma(inline);

========
void myAction(string name, ubyte[][] fields)(){
        pragma(mangle,  name ~ "_myAction");
        pragma(inline...
March 19, 2020
General »
...void myAction(string name, ubyte[][] fields)(){


}
===========

I need this because the ubyte[][] fields is very...
101 102 103 104 105 106 107 108 109 110 111
Next ›   Last »