tnLogit - Logit-transformed distribution
| baseDistribution : | Distribution__Probability (pass by const reference) | 
| The distribution to be transformed. | 
x ~ tnLogit(dnBeta(1,2))         # The log-odds of an Beta random variable.
x ~ dnBeta(1,2)|> tnLogit()      # Expressed using pipes.
p ~ dnBeta(1,2)
x := logit(p)                    # Expressed as a deterministic function of the probability.
xs ~ dnDirichlet([1,1,1,1]) |> tnLogit()