Hi,
I have the following class diagram where I want to show that method aliased as f2 calls the method aliased as f1, both methods being in a same class.
@startuml
class A {
- F foo(...) as f1
..
+ F foo(...) as f2
}
A::f2 --> A::f1
@enduml
The arrow for the above is not great.
It would be better to have a shorter and clearer arrow that starts from the side of the member rectangle and goes to the target rectangle on the same side in the same way it is done for members of different classes.
Is it possible ?
(I know this is a beta feature).